From ccd425e7993ef0e76da7bf10c566d33f7acc7c6d Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 6 May 2008 09:16:36 +0000 Subject: Remove unnecessary parentheses from return calls. Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/loco.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/loco.c') diff --git a/libavcodec/loco.c b/libavcodec/loco.c index 171652b13b..fcf93151e1 100644 --- a/libavcodec/loco.c +++ b/libavcodec/loco.c @@ -152,7 +152,7 @@ static int loco_decode_plane(LOCOContext *l, uint8_t *data, int width, int heigh data += stride; } - return ((get_bits_count(&rc.gb) + 7) >> 3); + return (get_bits_count(&rc.gb) + 7) >> 3; } static int decode_frame(AVCodecContext *avctx, -- cgit v1.2.3