flipped rgb fixed

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5707 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-04-19 22:19:42 +00:00
parent 60cf7062d7
commit 7facff64ef
1 changed files with 2 additions and 1 deletions

View File

@ -132,9 +132,10 @@ static int query_format(struct vf_instance_s* vf, unsigned int fmt){
return 3; // no conversion
case IMGFMT_YUY2:
case IMGFMT_UYVY:
return 1; // conversion
case IMGFMT_RGB24:
case IMGFMT_BGR24:
return 1; // conversion
return 1 | VFCAP_FLIPPED; // conversion+flipped
}
return 0;
}