diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2009-02-16 16:27:08 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2009-02-16 16:27:08 +0000 |
commit | b4314bff6b71ea0693b52ff78454770d5f17f91b (patch) | |
tree | f2572670ed02d8a749d7d797a8c1ceabfcd81b4c /libavformat | |
parent | 3b0fc60592e950d528724d577ce075c2e78cb350 (diff) | |
download | ffmpeg-b4314bff6b71ea0693b52ff78454770d5f17f91b.tar.gz |
Add a context to av_log() call and update the trace not to be redundant.
Originally committed as revision 17380 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mm.c b/libavformat/mm.c index b72c259e14..6c621ab493 100644 --- a/libavformat/mm.c +++ b/libavformat/mm.c @@ -168,7 +168,7 @@ static int mm_read_packet(AVFormatContext *s, return 0; default : - av_log(NULL, AV_LOG_INFO, "mm: unknown chunk type 0x%x\n", type); + av_log(s, AV_LOG_INFO, "unknown chunk type 0x%x\n", type); url_fseek(pb, length, SEEK_CUR); } } |