[vlc-devel] commit: Fix commit [a0a315c850c037a71e4bf8fd854bb6c671af4e02] ( Jean-Baptiste Kempf )

git version control git at videolan.org
Tue Jun 17 09:29:28 CEST 2008


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Jun 17 00:29:57 2008 -0700| [c351872b520541b73d547bc9003b6c68ddd1b941]

Fix commit [a0a315c850c037a71e4bf8fd854bb6c671af4e02]

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c351872b520541b73d547bc9003b6c68ddd1b941
---

 modules/demux/avi/avi.c    |    2 +-
 modules/demux/avi/libavi.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/avi/avi.c b/modules/demux/avi/avi.c
index 64fcf57..5bf7106 100644
--- a/modules/demux/avi/avi.c
+++ b/modules/demux/avi/avi.c
@@ -549,7 +549,7 @@ static int Open( vlc_object_t * p_this )
                     __MIN( p_vids->p_bih->biSize - sizeof( BITMAPINFOHEADER ),
                            p_vids->i_chunk_size - sizeof(BITMAPINFOHEADER) );
                 fmt.p_extra = &p_vids->p_bih[1];
-                msg_Dbg( p_demux, "stream[%d] video(%4.4s) %dx%d %dbpp %ffps",
+                msg_Dbg( p_demux, "stream[%d] video(%4.4s) %"PRIu32"x%"PRIu32" %dbpp %ffps",
                          i, (char*)&p_vids->p_bih->biCompression,
                          (uint32_t)p_vids->p_bih->biWidth,
                          (uint32_t)p_vids->p_bih->biHeight,
diff --git a/modules/demux/avi/libavi.c b/modules/demux/avi/libavi.c
index 91866a3..b121e1f 100644
--- a/modules/demux/avi/libavi.c
+++ b/modules/demux/avi/libavi.c
@@ -406,7 +406,7 @@ static int AVI_ChunkRead_strf( stream_t *s, avi_chunk_t *p_chk )
             }
 #ifdef AVI_DEBUG
             msg_Dbg( (vlc_object_t*)s,
-                     "strf: video:%4.4s %dx%d planes:%d %dbpp",
+                     "strf: video:%4.4s %"PRIu32"x%"PRIu32" planes:%d %dbpp",
                      (char*)&p_chk->strf.vids.p_bih->biCompression,
                      (uint32_t)p_chk->strf.vids.p_bih->biWidth,
                      (uint32_t)p_chk->strf.vids.p_bih->biHeight,




More information about the vlc-devel mailing list