diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-01 00:28:46 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-12-01 00:28:46 +0100 |
commit | 9dcd8b86f9d5d484c0772480bd12220212922b91 (patch) | |
tree | c334f1451f59d5c7ed7b399d93748f6fc2ca6773 /libavcodec/pictordec.c | |
parent | c863d3751f30b498c8054bd82d484156ae452803 (diff) | |
download | ffmpeg-9dcd8b86f9d5d484c0772480bd12220212922b91.tar.gz |
Use correct context for av_log.
Fixes ticket #695.
Diffstat (limited to 'libavcodec/pictordec.c')
-rw-r--r-- | libavcodec/pictordec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pictordec.c b/libavcodec/pictordec.c index 436b96d11d..b7d354b3d1 100644 --- a/libavcodec/pictordec.c +++ b/libavcodec/pictordec.c @@ -230,7 +230,7 @@ static int decode_frame(AVCodecContext *avctx, } } } else { - av_log_ask_for_sample(s, "uncompressed image\n"); + av_log_ask_for_sample(avctx, "uncompressed image\n"); return buf_size; } |