diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-29 22:23:16 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-30 22:18:07 +0100 |
commit | d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188 (patch) | |
tree | 36f5aff04d79a9b5825f0d17b15b3f6671ab4ab7 /libavcodec/libvorbis.c | |
parent | f486fb338e36e674c2b72fc7c859967538cf1b47 (diff) | |
download | ffmpeg-d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188.tar.gz |
cosmetics: Drop unnecessary parentheses around return values.
Diffstat (limited to 'libavcodec/libvorbis.c')
-rw-r--r-- | libavcodec/libvorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libvorbis.c b/libavcodec/libvorbis.c index 28e313ad84..25e600671f 100644 --- a/libavcodec/libvorbis.c +++ b/libavcodec/libvorbis.c @@ -105,7 +105,7 @@ static av_cold int oggvorbis_init_encoder(vorbis_info *vi, AVCodecContext *avcco /* How many bytes are needed for a buffer of length 'l' */ static int xiph_len(int l) { - return (1 + l / 255 + l); + return 1 + l / 255 + l; } static av_cold int oggvorbis_encode_init(AVCodecContext *avccontext) |