Commit c351872b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix commit [a0a315c8]

parent 86745676
...@@ -549,7 +549,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -549,7 +549,7 @@ static int Open( vlc_object_t * p_this )
__MIN( p_vids->p_bih->biSize - sizeof( BITMAPINFOHEADER ), __MIN( p_vids->p_bih->biSize - sizeof( BITMAPINFOHEADER ),
p_vids->i_chunk_size - sizeof(BITMAPINFOHEADER) ); p_vids->i_chunk_size - sizeof(BITMAPINFOHEADER) );
fmt.p_extra = &p_vids->p_bih[1]; 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, i, (char*)&p_vids->p_bih->biCompression,
(uint32_t)p_vids->p_bih->biWidth, (uint32_t)p_vids->p_bih->biWidth,
(uint32_t)p_vids->p_bih->biHeight, (uint32_t)p_vids->p_bih->biHeight,
......
...@@ -406,7 +406,7 @@ static int AVI_ChunkRead_strf( stream_t *s, avi_chunk_t *p_chk ) ...@@ -406,7 +406,7 @@ static int AVI_ChunkRead_strf( stream_t *s, avi_chunk_t *p_chk )
} }
#ifdef AVI_DEBUG #ifdef AVI_DEBUG
msg_Dbg( (vlc_object_t*)s, 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, (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->biWidth,
(uint32_t)p_chk->strf.vids.p_bih->biHeight, (uint32_t)p_chk->strf.vids.p_bih->biHeight,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment