[MPlayer-cvslog] r21615 - trunk/libvo/vo_x11.c

reimar subversion at mplayerhq.hu
Thu Dec 14 19:14:58 CET 2006


Author: reimar
Date: Thu Dec 14 19:14:57 2006
New Revision: 21615

Modified:
   trunk/libvo/vo_x11.c

Log:
10l, missing () in check for 32bit endian-conversion hack


Modified: trunk/libvo/vo_x11.c
==============================================================================
--- trunk/libvo/vo_x11.c	(original)
+++ trunk/libvo/vo_x11.c	Thu Dec 14 19:14:57 2006
@@ -556,7 +556,7 @@
     out_offset = 0;
     // for these formats conversion is currently not support and
     // we can easily "emulate" them.
-    if (out_format & 64 && IMGFMT_IS_RGB(out_format) || IMGFMT_IS_BGR(out_format)) {
+    if (out_format & 64 && (IMGFMT_IS_RGB(out_format) || IMGFMT_IS_BGR(out_format))) {
       out_format &= ~64;
 #ifdef WORDS_BIGENDIAN
       out_offset = 1;



More information about the MPlayer-cvslog mailing list