mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
skip unsupported postproc information
Originally committed as revision 26268 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b86dd1bf6d
commit
15a8bef0b6
@ -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…
Reference in New Issue
Block a user