summaryrefslogtreecommitdiff
path: root/libavformat/mm.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2009-02-16 16:27:08 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2009-02-16 16:27:08 +0000
commitb4314bff6b71ea0693b52ff78454770d5f17f91b (patch)
treef2572670ed02d8a749d7d797a8c1ceabfcd81b4c /libavformat/mm.c
parent3b0fc60592e950d528724d577ce075c2e78cb350 (diff)
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/mm.c')
-rw-r--r--libavformat/mm.c2
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);
}
}