diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-11-10 21:24:30 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-11-10 21:24:30 +0100 |
commit | 9c66428016c3d7219adec9a392d82f7ae89f9686 (patch) | |
tree | 370188b097eb48a936289c8e7f2083e253aad65d /libavcodec/wmaprodec.c | |
parent | 5b349c8d7cc5dd26b3fbbce6e3883ce02861eeb7 (diff) | |
download | ffmpeg-9c66428016c3d7219adec9a392d82f7ae89f9686.tar.gz |
avcodec/wmaprodec: XMA1 actually have packet sequence numbers
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/wmaprodec.c')
-rw-r--r-- | libavcodec/wmaprodec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c index 3b759f6158..6a784b6c6f 100644 --- a/libavcodec/wmaprodec.c +++ b/libavcodec/wmaprodec.c @@ -1612,7 +1612,7 @@ static int decode_packet(AVCodecContext *avctx, void *data, /** parse packet header */ init_get_bits(gb, buf, s->buf_bit_size); - if (avctx->codec_id == AV_CODEC_ID_WMAPRO) { + if (avctx->codec_id != AV_CODEC_ID_XMA2) { packet_sequence_number = get_bits(gb, 4); skip_bits(gb, 2); } else { @@ -1631,7 +1631,7 @@ static int decode_packet(AVCodecContext *avctx, void *data, num_bits_prev_frame); /** check for packet loss */ - if (avctx->codec_id == AV_CODEC_ID_WMAPRO && !s->packet_loss && + if (avctx->codec_id != AV_CODEC_ID_XMA2 && !s->packet_loss && ((s->packet_sequence_number + 1) & 0xF) != packet_sequence_number) { s->packet_loss = 1; av_log(avctx, AV_LOG_ERROR, |