aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Cadhalpun <andreas.cadhalpun@googlemail.com>2015-04-16 16:58:32 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-04-22 12:27:24 +0200
commit11752d17b8b4b7a8912bcb9f521045497abddfb1 (patch)
treebe12c9344b1fe2c02be49639b07435910422179a
parent12e005f7e7a91a5e7cd30c486529bbbb8b2ae210 (diff)
downloadffmpeg-11752d17b8b4b7a8912bcb9f521045497abddfb1.tar.gz
aacdec: consistently use avctx for logging in decode_eld_specific_config
ac may be NULL and then accessing ac->avctx results in a segmentation fault. Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 5b75689b987e4c4dd4f34d5c8be389547e9cc701) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/aacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index e564f118ab..2feb4af9cc 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -860,7 +860,7 @@ static int decode_eld_specific_config(AACContext *ac, AVCodecContext *avctx,
if (len == 15 + 255)
len += get_bits(gb, 16);
if (get_bits_left(gb) < len * 8 + 4) {
- av_log(ac->avctx, AV_LOG_ERROR, overread_err);
+ av_log(avctx, AV_LOG_ERROR, overread_err);
return AVERROR_INVALIDDATA;
}
skip_bits_long(gb, 8 * len);