Make the fourcc output endianness-independent.

patch by Luca Barbato < lu_zero -- at -- gentoo -- at -- org >


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16478 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2005-09-13 18:13:58 +00:00
parent 82e1a7303f
commit 7b14f06edb
1 changed files with 4 additions and 2 deletions

View File

@ -709,15 +709,17 @@ if (demuxer->desc->open)
if (!(demuxer = demuxer->desc->open(demuxer)))
return NULL;
if ((sh_video=demuxer->video->sh) && sh_video->bih)
if ((sh_video=demuxer->video->sh) && sh_video->bih){
int biComp=le2me_32(sh_video->bih->biCompression);
mp_msg(MSGT_DEMUX,MSGL_INFO,"VIDEO: [%.4s] %ldx%ld %dbpp %5.3f fps %5.1f kbps (%4.1f kbyte/s)\n",
(char *)&sh_video->bih->biCompression,
(char *)&biComp,
sh_video->bih->biWidth,
sh_video->bih->biHeight,
sh_video->bih->biBitCount,
sh_video->fps,
sh_video->i_bps*0.008f,
sh_video->i_bps/1024.0f );
}
return demuxer;
}