Commit b3facc4a authored by Michael Niedermayer's avatar Michael Niedermayer

ac3dec: fix uninitialized var warning

This commit should be purely cosmetic
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 310fd0d3
......@@ -61,7 +61,7 @@ static int ac3_eac3_probe(AVProbeData *p, enum AVCodecID expected_codec_id)
break;
if (buf[0] == 0x77 && buf[1] == 0x0B) {
av_assert0(hdr.frame_size <= sizeof(buf3));
for(; i<hdr.frame_size; i+=2) {
for(i=8; i<hdr.frame_size; i+=2) {
buf3[i ] = buf[i+1];
buf3[i+1] = buf[i ];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment