Remove excessive ()

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30557 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-02-14 09:19:30 +00:00
parent e8d058b8ef
commit 3e5d40ff2e
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}