Browse Source

skip unsupported postproc information

Originally committed as revision 26268 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Sascha Sommer 14 years ago
parent
commit
15a8bef0b6
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      libavcodec/wmaprodec.c

+ 4
- 3
libavcodec/wmaprodec.c View File

@@ -1290,9 +1290,10 @@ static int decode_frame(WMAProDecodeCtx *s)

/** read postproc transform */
if (s->num_channels > 1 && get_bits1(gb)) {
av_log_ask_for_sample(s->avctx, "Unsupported postproc transform found\n");
s->packet_loss = 1;
return 0;
if (get_bits1(gb)) {
for (i = 0; i < s->num_channels * s->num_channels; i++)
skip_bits(gb, 4);
}
}

/** read drc info */


Loading…
Cancel
Save