summaryrefslogtreecommitdiff
path: root/libavformat/raw.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2009-02-16 16:09:58 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2009-02-16 16:09:58 +0000
commitff9843ca39a088e36bce961d5c292616d0a1eb0e (patch)
treec943c002cd408f2e3a36f3a5d6e9cee434ab2da4 /libavformat/raw.c
parentc10234708827f375f612023df83c38471e786303 (diff)
Add a context to av_log() call.
Originally committed as revision 17376 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/raw.c')
-rw-r--r--libavformat/raw.c2
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)