summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-13 23:37:40 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-13 23:37:40 +0000
commit3401cad81ac351335763533eb3d09205266ffc78 (patch)
tree5372c66c791509a04e4e6f18e1f04089e1e451d4 /mplayer.c
parent9953c4838b9dc5140983b35b72e06761b3ce99af (diff)
downloadmpv-3401cad81ac351335763533eb3d09205266ffc78.tar.bz2
mpv-3401cad81ac351335763533eb3d09205266ffc78.tar.xz
dbpp check removed *AGAIN*
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@397 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mplayer.c b/mplayer.c
index 20f5a433e7..402d1a0d46 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -863,13 +863,13 @@ printf("Found video codec: [%s] drv:%d (%s)\n",sh_video->codec->name,sh_video->c
for(i=0;i<CODECS_MAX_OUTFMT;i++){
out_fmt=sh_video->codec->outfmt[i];
- if(vo_dbpp){
- if( ((out_fmt & IMGFMT_BGR_MASK) == IMGFMT_BGR) && ((out_fmt & 0xff) == vo_dbpp) || (out_fmt & IMGFMT_BGR_MASK) != IMGFMT_BGR){
- if(video_out->query_format(out_fmt)) break;
- }
- }else{
+// if(vo_dbpp){
+// if( ((out_fmt & IMGFMT_BGR_MASK) == IMGFMT_BGR) && ((out_fmt & 0xff) == vo_dbpp) || (out_fmt & IMGFMT_BGR_MASK) != IMGFMT_BGR){
+// if(video_out->query_format(out_fmt)) break;
+// }
+// }else{
if(video_out->query_format(out_fmt)) break;
- }
+// }
}
if(i>=CODECS_MAX_OUTFMT){
printf("Sorry, selected video_out device is incompatible with this codec.\n");