Commit 3ebfe22d authored by Michael Niedermayer's avatar Michael Niedermayer

interplayvideodec: pass correct pointer to av_dlog()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 90f9b063
......@@ -908,7 +908,7 @@ static void ipvideo_decode_opcodes(IpvideoContext *s)
opcode = get_bits(&gb, 4);
av_dlog(s->avctx, "block @ (%3d, %3d): encoding 0x%X, data ptr @ %p\n",
x, y, opcode, s->stream_ptr);
x, y, opcode, s->stream_ptr.buffer);
if (!s->is_16bpp) {
s->pixel_ptr = s->current_frame.data[0] + x
......
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