[MPlayer-cvslog] r30557 - trunk/libmpcodecs/vd_theora.c

reimar subversion at mplayerhq.hu
Sun Feb 14 10:19:30 CET 2010


Author: reimar
Date: Sun Feb 14 10:19:30 2010
New Revision: 30557

Log:
Remove excessive ()

Modified:
   trunk/libmpcodecs/vd_theora.c

Modified: trunk/libmpcodecs/vd_theora.c
==============================================================================
--- trunk/libmpcodecs/vd_theora.c	Sat Feb 13 22:32:19 2010	(r30556)
+++ trunk/libmpcodecs/vd_theora.c	Sun Feb 14 10:19:30 2010	(r30557)
@@ -45,7 +45,7 @@ LIBVD_EXTERN(theora)
 static int control(sh_video_t *sh,int cmd,void* arg,...){
     switch(cmd) {
     case VDCTRL_QUERY_FORMAT:
-        if ((*((int*)arg)) == IMGFMT_YV12)
+        if (*(int*)arg == IMGFMT_YV12)
 	    return CONTROL_TRUE;
 	return CONTROL_FALSE;
     }


More information about the MPlayer-cvslog mailing list