Changeset a0a315c850c037a71e4bf8fd854bb6c671af4e02
- 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
| r3561b9b |
ra0a315c |
|
| 552 | 552 | msg_Dbg( p_demux, "stream[%d] video(%4.4s) %dx%d %dbpp %ffps", |
|---|
| 553 | 553 | 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, |
|---|
| 556 | 556 | p_vids->p_bih->biBitCount, |
|---|
| 557 | 557 | (float)tk->i_rate/(float)tk->i_scale ); |
|---|
| r3561b9b |
ra0a315c |
|
| 409 | 409 | "strf: video:%4.4s %dx%d planes:%d %dbpp", |
|---|
| 410 | 410 | (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, |
|---|
| 413 | 413 | p_chk->strf.vids.p_bih->biPlanes, |
|---|
| 414 | 414 | p_chk->strf.vids.p_bih->biBitCount ); |
|---|
| … | … | |
| 652 | 652 | static void AVI_ChunkFree_nothing( avi_chunk_t *p_chk ) |
|---|
| 653 | 653 | { |
|---|
| 654 | | |
|---|
| | 654 | VLC_UNUSED( p_chk ); |
|---|
| 655 | 655 | } |
|---|
| 656 | 656 | |
|---|