]> git.sesse.net Git - vlc/commitdiff
Fix commit [a0a315c850c037a71e4bf8fd854bb6c671af4e02]
authorJean-Baptiste Kempf <jb@videolan.org>
Tue, 17 Jun 2008 07:29:57 +0000 (00:29 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Tue, 17 Jun 2008 07:29:57 +0000 (00:29 -0700)
modules/demux/avi/avi.c
modules/demux/avi/libavi.c

index 64fcf57b087baf4d853175a91d0bb0ef1b94efa0..5bf710680a88619ed43654907741f53630f5073e 100644 (file)
@@ -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,
index 91866a3e45233257d5c985642a46d603c5addc57..b121e1f855daddc67069b48ca7e7f1ae6bfc2af0 100644 (file)
@@ -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,