ac3dec: fix uninitialized var warning

This commit should be purely cosmetic

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/28/head
Michael Niedermayer 13 years ago
parent 310fd0d3d4
commit b3facc4af8
  1. 2
      libavformat/ac3dec.c

@ -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 ];
}

Loading…
Cancel
Save