projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
679481b
)
interplayvideo: fix av_dlog parameter type mismatch
author
Diego Biurrun
<diego@biurrun.de>
Tue, 10 Apr 2012 16:18:40 +0000
(18:18 +0200)
committer
Diego Biurrun
<diego@biurrun.de>
Wed, 11 Apr 2012 08:43:47 +0000
(10:43 +0200)
libavcodec/interplayvideo.c:909:13: warning: format ‘%p’ expects argument of type ‘void *’, but argument 7 has type ‘GetByteContext’ [-Wformat]
libavcodec/interplayvideo.c
patch
|
blob
|
history
diff --git
a/libavcodec/interplayvideo.c
b/libavcodec/interplayvideo.c
index 4732bf5325af421c13389187b24c680ee3b070a3..bee7a68e52c7f21d982db1d1900edc3a60f4556c 100644
(file)
--- a/
libavcodec/interplayvideo.c
+++ b/
libavcodec/interplayvideo.c
@@
-907,8
+907,9
@@
static void ipvideo_decode_opcodes(IpvideoContext *s)
for (x = 0; x < s->avctx->width; x += 8) {
opcode = get_bits(&gb, 4);
- av_dlog(NULL, " block @ (%3d, %3d): encoding 0x%X, data ptr @ %p\n",
- x, y, opcode, s->stream_ptr);
+ av_dlog(s->avctx,
+ " block @ (%3d, %3d): encoding 0x%X, data ptr offset %d\n",
+ x, y, opcode, bytestream2_tell(&s->stream_ptr));
if (!s->is_16bpp) {
s->pixel_ptr = s->current_frame.data[0] + x