add tif support to demux_mf

ok'd by diego and reimar


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25048 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
compn 2007-11-14 13:49:18 +00:00
parent 9ac045e0d1
commit 48a2ba01e5
1 changed files with 2 additions and 0 deletions

View File

@ -104,6 +104,8 @@ static demuxer_t* demux_open_mf(demuxer_t* demuxer){
else
if ( !strcasecmp( mf_type,"png" )) sh_video->format = mmioFOURCC('M', 'P', 'N', 'G' );
else
if ( !strcasecmp( mf_type,"tif" )) sh_video->format = mmioFOURCC('t', 'i', 'f', 'f' );
else
if ( !strcasecmp( mf_type,"tga" )) sh_video->format = mmioFOURCC('M', 'T', 'G', 'A' );
else
if ( !strcasecmp( mf_type,"bmp" )) sh_video->format = mmioFOURCC('b', 'm', 'p', ' ' );