diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2009-02-27 08:31:20 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2009-02-27 08:31:20 +0000 |
commit | f3592353cea2c0a05b470fef13461d793002b516 (patch) | |
tree | e144a28f341b0b789beb9e2648a63f6401bbde34 /libavformat/mov.c | |
parent | 1468d503a957ad20bf458dc7e07f184399cd672d (diff) | |
download | ffmpeg-f3592353cea2c0a05b470fef13461d793002b516.tar.gz |
Add a context to av_log() call.
Originally committed as revision 17638 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 4f409493f2..3f3444c9a4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1732,7 +1732,7 @@ static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOVAtom atom) if (get_le32(pb) != MKTAG('d','c','o','m')) return -1; if (get_le32(pb) != MKTAG('z','l','i','b')) { - av_log(NULL, AV_LOG_ERROR, "unknown compression for cmov atom !"); + av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !"); return -1; } get_be32(pb); /* cmvd atom */ |