diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-23 01:18:53 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-23 01:18:53 +0100 |
commit | 801a2a1df05d35c1c629e7b9dd7e9f584febcd67 (patch) | |
tree | c75d78338f6ab8438429bb40cfb7d205d7a687b7 /libavcodec/mpeg12.c | |
parent | 42dde253ec71f98a45892aac7cf9d3ecda7e0d8f (diff) | |
download | ffmpeg-801a2a1df05d35c1c629e7b9dd7e9f584febcd67.tar.gz |
mpeg12: fix av_log level and context
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 234cac49f2..c40af2bbd2 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -2137,9 +2137,9 @@ static void mpeg_decode_user_data(AVCodecContext *avctx, } /* for(i=0; !(!p[i-2] && !p[i-1] && p[i]==1) && i<buf_size; i++){ - av_log(0,0, "%c", p[i]); + av_log(avctx, AV_LOG_ERROR, "%c", p[i]); } - av_log(0,0, "\n");*/ + av_log(avctx, AV_LOG_ERROR, "\n");*/ } /* we parse the DTG active format information */ |