Changeset a0a315c850c037a71e4bf8fd854bb6c671af4e02

Show
Ignore:
Timestamp:
06/15/08 01:31:33 (3 months ago)
Author:
Jean-Baptiste Kempf <jb@videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@videolan.org> 1213486293 -0700
git-parent:

[b5c0d68d4eaffc2334ec3f558c54447560269ae9]

git-author:
Jean-Baptiste Kempf <jb@videolan.org> 1213486293 -0700
Message:

Kill warnings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/avi/avi.c

    r3561b9b ra0a315c  
    552552                msg_Dbg( p_demux, "stream[%d] video(%4.4s) %dx%d %dbpp %ffps", 
    553553                         i, (char*)&p_vids->p_bih->biCompression, 
    554                          p_vids->p_bih->biWidth, 
    555                          p_vids->p_bih->biHeight, 
     554                         (uint32_t)p_vids->p_bih->biWidth, 
     555                         (uint32_t)p_vids->p_bih->biHeight, 
    556556                         p_vids->p_bih->biBitCount, 
    557557                         (float)tk->i_rate/(float)tk->i_scale ); 
  • modules/demux/avi/libavi.c

    r3561b9b ra0a315c  
    409409                     "strf: video:%4.4s %dx%d planes:%d %dbpp", 
    410410                     (char*)&p_chk->strf.vids.p_bih->biCompression, 
    411                      p_chk->strf.vids.p_bih->biWidth, 
    412                      p_chk->strf.vids.p_bih->biHeight, 
     411                     (uint32_t)p_chk->strf.vids.p_bih->biWidth, 
     412                     (uint32_t)p_chk->strf.vids.p_bih->biHeight, 
    413413                     p_chk->strf.vids.p_bih->biPlanes, 
    414414                     p_chk->strf.vids.p_bih->biBitCount ); 
     
    652652static void AVI_ChunkFree_nothing( avi_chunk_t *p_chk ) 
    653653{ 
    654  
     654    VLC_UNUSED( p_chk ); 
    655655} 
    656656