Commit b7855daf authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'c12c085b'

* commit 'c12c085b':
  dcadec: Do not check for overreads in auxiliary data
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 4aa900ac c12c085b
...@@ -1165,12 +1165,12 @@ static int dca_subframe_footer(DCAContext *s, int base_channel) ...@@ -1165,12 +1165,12 @@ static int dca_subframe_footer(DCAContext *s, int base_channel)
align_get_bits(&s->gb); // byte align align_get_bits(&s->gb); // byte align
skip_bits(&s->gb, 16); // nAUXCRC16 skip_bits(&s->gb, 16); // nAUXCRC16
// additional data (reserved, cf. ETSI TS 102 114 V1.4.1) /*
if ((reserved = (aux_data_end - get_bits_count(&s->gb))) < 0) { * additional data (reserved, cf. ETSI TS 102 114 V1.4.1)
av_log(s->avctx, AV_LOG_ERROR, *
"Overread auxiliary data by %d bits\n", -reserved); * Note: don't check for overreads, aux_data_count can't be trusted.
return AVERROR_INVALIDDATA; */
} else if (reserved) { if ((reserved = (aux_data_end - get_bits_count(&s->gb))) > 0) {
avpriv_request_sample(s->avctx, avpriv_request_sample(s->avctx,
"Core auxiliary data reserved content"); "Core auxiliary data reserved content");
skip_bits_long(&s->gb, reserved); skip_bits_long(&s->gb, reserved);
......
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