diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2009-02-16 16:09:58 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2009-02-16 16:09:58 +0000 |
commit | ff9843ca39a088e36bce961d5c292616d0a1eb0e (patch) | |
tree | c943c002cd408f2e3a36f3a5d6e9cee434ab2da4 | |
parent | c10234708827f375f612023df83c38471e786303 (diff) | |
download | ffmpeg-ff9843ca39a088e36bce961d5c292616d0a1eb0e.tar.gz |
Add a context to av_log() call.
Originally committed as revision 17376 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/raw.c b/libavformat/raw.c index baaea43883..9ddd55fd88 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -229,7 +229,7 @@ static int ingenient_read_packet(AVFormatContext *s, AVPacket *pkt) unk2 = get_le16(s->pb); url_fskip(s->pb, 22); // ASCII timestamp - av_log(NULL, AV_LOG_DEBUG, "Ingenient packet: size=%d, width=%d, height=%d, unk1=%d unk2=%d\n", + av_log(s, AV_LOG_DEBUG, "Ingenient packet: size=%d, width=%d, height=%d, unk1=%d unk2=%d\n", size, w, h, unk1, unk2); if (av_new_packet(pkt, size) < 0) |