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

Kill warnings.

parent b5c0d68d
......@@ -551,8 +551,8 @@ static int Open( vlc_object_t * p_this )
fmt.p_extra = &p_vids->p_bih[1];
msg_Dbg( p_demux, "stream[%d] video(%4.4s) %dx%d %dbpp %ffps",
i, (char*)&p_vids->p_bih->biCompression,
p_vids->p_bih->biWidth,
p_vids->p_bih->biHeight,
(uint32_t)p_vids->p_bih->biWidth,
(uint32_t)p_vids->p_bih->biHeight,
p_vids->p_bih->biBitCount,
(float)tk->i_rate/(float)tk->i_scale );
......
......@@ -408,8 +408,8 @@ static int AVI_ChunkRead_strf( stream_t *s, avi_chunk_t *p_chk )
msg_Dbg( (vlc_object_t*)s,
"strf: video:%4.4s %dx%d planes:%d %dbpp",
(char*)&p_chk->strf.vids.p_bih->biCompression,
p_chk->strf.vids.p_bih->biWidth,
p_chk->strf.vids.p_bih->biHeight,
(uint32_t)p_chk->strf.vids.p_bih->biWidth,
(uint32_t)p_chk->strf.vids.p_bih->biHeight,
p_chk->strf.vids.p_bih->biPlanes,
p_chk->strf.vids.p_bih->biBitCount );
#endif
......@@ -651,7 +651,7 @@ static int AVI_ChunkRead_nothing( stream_t *s, avi_chunk_t *p_chk )
}
static void AVI_ChunkFree_nothing( avi_chunk_t *p_chk )
{
VLC_UNUSED( p_chk );
}
static struct
......
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