Commit 9c664280 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/wmaprodec: XMA1 actually have packet sequence numbers

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 5b349c8d
......@@ -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,
......
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