bgr24 and bgr32 support

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25396 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ben 2007-12-14 18:19:50 +00:00
parent 068f218e67
commit 0dabe9f877
1 changed files with 6 additions and 1 deletions

View File

@ -287,6 +287,10 @@ unsigned int GetBlendForFourCC( int id )
return 3;
case IMGFMT_BGR16:
return 5;
case IMGFMT_BGR24:
return 6;
case IMGFMT_BGR32:
return 7;
default:
return 1;
}
@ -1057,7 +1061,8 @@ is_supported_fourcc (uint32_t fourcc)
case IMGFMT_Y211:
case IMGFMT_RGB15:
case IMGFMT_RGB16:
// case IMGFMT_BGR32:
case IMGFMT_BGR24:
case IMGFMT_BGR32:
return 1;
default:
return 0;