Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-09-09 16:25:12 +0400
committerMichael Niedermayer <michaelni@gmx.at>2007-09-09 16:25:12 +0400
commitba8964db60592febf238678adb2d3e62562a9d47 (patch)
tree64d1b2bfef588686d7154333e4b9ef3e8479d09b /libavcodec
parent61806e9fa752ad4bced733b4c4feef3b73d4ef78 (diff)
remove ()
Originally committed as revision 10452 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/snow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index dcaa682fc8..c24dacaaa8 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -4406,7 +4406,7 @@ static int decode_init(AVCodecContext *avctx)
block_size = MB_SIZE >> s->block_max_depth;
- slice_buffer_init(&s->sb, s->plane[0].height, (block_size) + (s->spatial_decomposition_count * 8) + 1, s->plane[0].width, s->spatial_idwt_buffer);
+ slice_buffer_init(&s->sb, s->plane[0].height, block_size + s->spatial_decomposition_count * 8 + 1, s->plane[0].width, s->spatial_idwt_buffer);
return 0;
}