[FFmpeg-cvslog] avcodec/mpeg4audio: Use proper logcontext for logging
Andreas Rheinhardt
git at videolan.org
Tue Feb 23 12:36:28 EET 2021
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Wed Feb 10 12:12:55 2021 +0100| [a40763f520cee8b928985dc3040362d761af570f] | committer: Andreas Rheinhardt
avcodec/mpeg4audio: Use proper logcontext for logging
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a40763f520cee8b928985dc3040362d761af570f
---
libavcodec/mpeg4audio.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/mpeg4audio.c b/libavcodec/mpeg4audio.c
index 77cf2fb61c..2286303b54 100644
--- a/libavcodec/mpeg4audio.c
+++ b/libavcodec/mpeg4audio.c
@@ -30,7 +30,7 @@
* @param[in] c MPEG4AudioConfig structure to fill
* @return on success 0 is returned, otherwise a value < 0
*/
-static int parse_config_ALS(GetBitContext *gb, MPEG4AudioConfig *c)
+static int parse_config_ALS(GetBitContext *gb, MPEG4AudioConfig *c, void *logctx)
{
if (get_bits_left(gb) < 112)
return AVERROR_INVALIDDATA;
@@ -43,7 +43,7 @@ static int parse_config_ALS(GetBitContext *gb, MPEG4AudioConfig *c)
c->sample_rate = get_bits_long(gb, 32);
if (c->sample_rate <= 0) {
- av_log(NULL, AV_LOG_ERROR, "Invalid sample rate %d\n", c->sample_rate);
+ av_log(logctx, AV_LOG_ERROR, "Invalid sample rate %d\n", c->sample_rate);
return AVERROR_INVALIDDATA;
}
@@ -136,7 +136,7 @@ int ff_mpeg4audio_get_config_gb(MPEG4AudioConfig *c, GetBitContext *gb,
specific_config_bitindex = get_bits_count(gb);
- ret = parse_config_ALS(gb, c);
+ ret = parse_config_ALS(gb, c, logctx);
if (ret < 0)
return ret;
}
More information about the ffmpeg-cvslog
mailing list