diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-06 09:16:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-06 09:16:36 +0000 |
commit | ccd425e7993ef0e76da7bf10c566d33f7acc7c6d (patch) | |
tree | 29a2af2f8eb50c22d5b23cca7763d9d507273cab /libavformat/utils.c | |
parent | 91605c69fb79bc37e7b8ae756b42bbe1f3cf5423 (diff) | |
download | ffmpeg-ccd425e7993ef0e76da7bf10c566d33f7acc7c6d.tar.gz |
Remove unnecessary parentheses from return calls.
Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 530a9bb16a..5d164c5d5a 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1690,7 +1690,7 @@ static int has_codec_parameters(AVCodecContext *enc) val = 1; break; } - return (enc->codec_id != CODEC_ID_NONE && val != 0); + return enc->codec_id != CODEC_ID_NONE && val != 0; } static int try_decode_frame(AVStream *st, const uint8_t *data, int size) |