comparison libmpdemux/demux_real.c @ 17366:934380353fd6

massive attack: mp_msg printf format fixes
author rathann
date Thu, 12 Jan 2006 20:04:36 +0000
parents b07bb7ee7ce4
children 002e4923d5ab
comparison
equal deleted inserted replaced
17365:e2ca21ac42ce 17366:934380353fd6
1788 } 1788 }
1789 1789
1790 if(demuxer->video->sh){ 1790 if(demuxer->video->sh){
1791 sh_video_t *sh=demuxer->video->sh; 1791 sh_video_t *sh=demuxer->video->sh;
1792 mp_msg(MSGT_DEMUX,MSGL_V,"VIDEO: %.4s [%08X,%08X] %dx%d (aspect %4.2f) %4.2f fps\n", 1792 mp_msg(MSGT_DEMUX,MSGL_V,"VIDEO: %.4s [%08X,%08X] %dx%d (aspect %4.2f) %4.2f fps\n",
1793 &sh->format,((unsigned int*)(sh->bih+1))[1],((unsigned int*)(sh->bih+1))[0], 1793 (char *)&sh->format,((unsigned int*)(sh->bih+1))[1],((unsigned int*)(sh->bih+1))[0],
1794 sh->disp_w,sh->disp_h,sh->aspect,sh->fps); 1794 sh->disp_w,sh->disp_h,sh->aspect,sh->fps);
1795 } 1795 }
1796 1796
1797 return demuxer; 1797 return demuxer;
1798 } 1798 }