summaryrefslogtreecommitdiffstats
path: root/vidix
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-20 20:19:18 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-06-20 20:19:18 +0000
commit3927b78660995121907af120a925f1193b11ea21 (patch)
treed162fb7ccc7e0ab76206e430e3c0d6ac5611f047 /vidix
parent86d8472fb3f169050bf07088abc5360ee8d8b54b (diff)
downloadmpv-3927b78660995121907af120a925f1193b11ea21.tar.bz2
mpv-3927b78660995121907af120a925f1193b11ea21.tar.xz
remove useless 'else'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27113 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r--vidix/vidix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vidix/vidix.c b/vidix/vidix.c
index 945318a804..6b38d15af0 100644
--- a/vidix/vidix.c
+++ b/vidix/vidix.c
@@ -113,7 +113,7 @@ static uint32_t normalize_fourcc(uint32_t fourcc)
if((fourcc & MPLAYER_IMGFMT_RGB_MASK) == (MPLAYER_IMGFMT_RGB|0) ||
(fourcc & MPLAYER_IMGFMT_RGB_MASK) == (MPLAYER_IMGFMT_BGR|0))
return bswap_32(fourcc);
- else return fourcc;
+ return fourcc;
}
int vdlQueryFourcc(VDL_HANDLE ctx,vidix_fourcc_t *f)