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/indeo4.c | |
parent | f486fb338e36e674c2b72fc7c859967538cf1b47 (diff) | |
download | ffmpeg-d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188.tar.gz |
cosmetics: Drop unnecessary parentheses around return values.
Diffstat (limited to 'libavcodec/indeo4.c')
-rw-r--r-- | libavcodec/indeo4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/indeo4.c b/libavcodec/indeo4.c index e816330e53..dd8e5b1830 100644 --- a/libavcodec/indeo4.c +++ b/libavcodec/indeo4.c @@ -148,7 +148,7 @@ static int decode_plane_subdivision(GetBitContext *gb) static inline int scale_tile_size(int def_size, int size_factor) { - return (size_factor == 15 ? def_size : (size_factor + 1) << 5); + return size_factor == 15 ? def_size : (size_factor + 1) << 5; } /** |