diff options
Diffstat (limited to 'plugins/Watrack/formats/fmt_wma.pas')
-rw-r--r-- | plugins/Watrack/formats/fmt_wma.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Watrack/formats/fmt_wma.pas b/plugins/Watrack/formats/fmt_wma.pas index 8027ce052d..ed575147ac 100644 --- a/plugins/Watrack/formats/fmt_wma.pas +++ b/plugins/Watrack/formats/fmt_wma.pas @@ -295,7 +295,7 @@ type size :word;
bitmap :BITMAPINFOHEADER;
end;
- tPrefix = packed record
+ Prefix = packed record
StreamType :tGUID;
ECGUID :tGUID; // Error Correction
TimeOffset :int64;
@@ -309,7 +309,7 @@ var tmpguid:pGUID;
begin
tmpguid:=pointer(ptr);
- inc(ptr,SizeOf(tPrefix)); //ofset to Type-Specific Data
+ inc(ptr,SizeOf(Prefix)); //ofset to Type-Specific Data
if CompareGUID(tmpguid^,ASF_Audio_Media) then
begin
Info.channels:=pAudio(ptr)^.Channels;
|