Commit cc112e47 authored by benoit's avatar benoit

Add a context to av_log() call.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17376 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 96330bf3
......@@ -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