Commit ff9843ca authored by Benoit Fouet's avatar Benoit Fouet

Add a context to av_log() call.

Originally committed as revision 17376 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c1023470
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment