[MPlayer-cvslog] r35283 - trunk/libvo/vo_xvmc.c

reimar subversion at mplayerhq.hu
Tue Oct 30 17:30:47 CET 2012


Author: reimar
Date: Tue Oct 30 17:30:47 2012
New Revision: 35283

Log:
Fix copy-paste error found by Coverity (yes, it really has a
COPY_PASTE_ERROR error-type for that...).

Modified:
   trunk/libvo/vo_xvmc.c

Modified: trunk/libvo/vo_xvmc.c
==============================================================================
--- trunk/libvo/vo_xvmc.c	Tue Oct 30 16:40:41 2012	(r35282)
+++ trunk/libvo/vo_xvmc.c	Tue Oct 30 17:30:47 2012	(r35283)
@@ -267,7 +267,7 @@ static void print_xvimage_format_values(
 
     mp_msg(MSGT_VO,msgl,"  byte_order = ");
     if(xifv->byte_order == LSBFirst) mp_msg(MSGT_VO,msgl,"LSB First\n");
-    else if(xifv->type == MSBFirst) mp_msg(MSGT_VO,msgl,"MSB First\n");
+    else if(xifv->byte_order == MSBFirst) mp_msg(MSGT_VO,msgl,"MSB First\n");
     else mp_msg(MSGT_VO,msgl,"Unknown\n");//yes Linux support other types too
 
     mp_msg(MSGT_VO,msgl,"  guid = ");


More information about the MPlayer-cvslog mailing list