[FFmpeg-cvslog] interplayvideodec: pass correct pointer to av_dlog()

Michael Niedermayer git at videolan.org
Fri Mar 30 20:39:00 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Mar 30 20:08:07 2012 +0200| [3ebfe22d133001c56594cced01836d2cbb649b24] | committer: Michael Niedermayer

interplayvideodec: pass correct pointer to av_dlog()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3ebfe22d133001c56594cced01836d2cbb649b24
---

 libavcodec/interplayvideo.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c
index 3ea7c50..ebdddbe 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



More information about the ffmpeg-cvslog mailing list