* Fixed typecast error in A52 headers

git-svn-id: trunk@4683 -
This commit is contained in:
ivost 2006-09-22 14:14:03 +00:00
parent 66e155acab
commit 87c5880318

View File

@ -486,7 +486,7 @@ const
ac3_channels: array[0..7] of cint = (2,1,2,3,3,4,4,5);
var
num, ofs: cint;
flags, i, len: cint;
flags, len, i: cint;
sample_rate, bit_rate: cint;
level: cfloat;
begin
@ -556,7 +556,7 @@ begin
if a52_block(decoder^.state) <> 0 then
Exit(-1);
float_to_int(decoder^.samples, pointer(PtrUInt(buffer) + Ofs + 2{channels}*i*256*2{sample_size}), 2{channels});
float_to_int(decoder^.samples, pointer(PtrInt(buffer) + Ofs + 2{channels}*i*256*2{sample_size}), 2{channels});
end;
decoder^.inbuf_ptr := @decoder^.inbuf;
@ -570,4 +570,4 @@ begin
Result := ofs;
end;
end.
end.