summaryrefslogtreecommitdiff
path: root/libavcodec/aac_adtstoasc_bsf.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-04-11 01:03:51 -0300
committerJames Almer <jamrial@gmail.com>2017-04-19 23:44:07 -0300
commit0f05f2c7e67949ce77de3cf7013f7d4da1c3e046 (patch)
treec746b6f39a4bde4de5daedf46bd63c2086f7aca0 /libavcodec/aac_adtstoasc_bsf.c
parent88612f8db3b8b0c6e51f9136ec4915f72cbc9a56 (diff)
downloadffmpeg-0f05f2c7e67949ce77de3cf7013f7d4da1c3e046.tar.gz
avcodec/aac_adtstoasc: fix ASC passthrough on small frames
ASC frames smaller than AAC_ADTS_HEADER_SIZE were being discarded. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/aac_adtstoasc_bsf.c')
-rw-r--r--libavcodec/aac_adtstoasc_bsf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/aac_adtstoasc_bsf.c b/libavcodec/aac_adtstoasc_bsf.c
index 1067160559..e116b1d85b 100644
--- a/libavcodec/aac_adtstoasc_bsf.c
+++ b/libavcodec/aac_adtstoasc_bsf.c
@@ -49,14 +49,14 @@ static int aac_adtstoasc_filter(AVBSFContext *bsfc, AVPacket *out)
if (ret < 0)
return ret;
+ if (bsfc->par_in->extradata && in->size >= 2 && (AV_RB16(in->data) >> 4) != 0xfff)
+ goto finish;
+
if (in->size < AAC_ADTS_HEADER_SIZE)
goto packet_too_small;
init_get_bits(&gb, in->data, AAC_ADTS_HEADER_SIZE * 8);
- if (bsfc->par_in->extradata && show_bits(&gb, 12) != 0xfff)
- goto finish;
-
if (avpriv_aac_parse_header(&gb, &hdr) < 0) {
av_log(bsfc, AV_LOG_ERROR, "Error parsing ADTS frame header!\n");
ret = AVERROR_INVALIDDATA;