diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 20:08:07 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-30 20:08:07 +0200 |
commit | 3ebfe22d133001c56594cced01836d2cbb649b24 (patch) | |
tree | 3669c972f0bc1c54c1ad90a36862de5a51e7ec1b | |
parent | 90f9b063862f51c7e192da786ad88e9b1287978c (diff) | |
download | ffmpeg-3ebfe22d133001c56594cced01836d2cbb649b24.tar.gz |
interplayvideodec: pass correct pointer to av_dlog()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/interplayvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c index 3ea7c50f87..ebdddbe9b6 100644 --- a/libavcodec/interplayvideo.c +++ b/libavcodec/interplayvideo.c @@ -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 |