summaryrefslogtreecommitdiff
path: root/libavcodec/vp8.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-20 17:45:54 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-20 17:45:54 +0000
commit153da88dfb791b4c3afa3f32d50864515481565b (patch)
tree22bf2cc9b3416bbddefb9a934e01d695fd70685c /libavcodec/vp8.c
parent4055438b48371387133a72b964bbc10152ce3a75 (diff)
Add some braces to silence the warning:
libavcodec/vp8.c:892: warning: suggest explicit braces to avoid ambiguous `else' Originally committed as revision 24366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r--libavcodec/vp8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index 031c845800..a14e73160a 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -889,9 +889,9 @@ else AV_COPY64(b,a);
XCHG(top_border_m1+8, src_y-8, xchg);
XCHG(top_border, src_y, xchg);
XCHG(top_border+8, src_y+8, 1);
- if (mb_x < mb_width-1)
+ if (mb_x < mb_width-1) {
XCHG(top_border+32, src_y+16, 1);
-
+ }
// only copy chroma for normal loop filter
// or to initialize the top row to 127
if (!simple || !mb_y) {