summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd_ffmpeg.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 00:23:02 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 00:23:02 +0000
commitc1f5c9bd3fa0b963e1d5d938fc9ffc3fc074e071 (patch)
tree9b55fd1858cdf3508e741b71387d75eed5b3be54 /libmpcodecs/vd_ffmpeg.c
parent3acba2c82d002736a5917ad412b34ee0416ba2ac (diff)
downloadmpv-c1f5c9bd3fa0b963e1d5d938fc9ffc3fc074e071.tar.bz2
mpv-c1f5c9bd3fa0b963e1d5d938fc9ffc3fc074e071.tar.xz
cosmetics: Remove pointless parentheses from return calls.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26786 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vd_ffmpeg.c')
-rw-r--r--libmpcodecs/vd_ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vd_ffmpeg.c b/libmpcodecs/vd_ffmpeg.c
index aac7e5e4ef..59a1bb8143 100644
--- a/libmpcodecs/vd_ffmpeg.c
+++ b/libmpcodecs/vd_ffmpeg.c
@@ -228,7 +228,7 @@ static int init(sh_video_t *sh){
ctx = sh->context = malloc(sizeof(vd_ffmpeg_ctx));
if (!ctx)
- return(0);
+ return 0;
memset(ctx, 0, sizeof(vd_ffmpeg_ctx));
lavc_codec = (AVCodec *)avcodec_find_decoder_by_name(sh->codec->dll);