From d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 29 Dec 2011 22:23:16 +0100 Subject: cosmetics: Drop unnecessary parentheses around return values. --- libavcodec/libvorbis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/libvorbis.c') 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) -- cgit v1.2.3