summaryrefslogtreecommitdiff
path: root/libavcodec/snow.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-02-26 17:13:42 +0000
committerDiego Biurrun <diego@biurrun.de>2008-02-26 17:13:42 +0000
commit301df480741fe18df476f31700945fdaac75709f (patch)
tree4fd31c4720e3760396fe25b411ac61e9bc4e8695 /libavcodec/snow.c
parente6464f8b5e267a02c6ca122ff0f523396fabea4f (diff)
Add comments to some #endif directives.
Originally committed as revision 12239 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/snow.c')
-rw-r--r--libavcodec/snow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index fe942f5596..35fdd099b3 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -847,7 +847,7 @@ inv_liftS(IDWTELEM *dst, IDWTELEM *src, IDWTELEM *ref,
LIFTS(src[w*src_step], mul*2*ref[w*ref_step]+add, inverse);
}
}
-#endif
+#endif /* ! liftS */
static void horizontal_decompose53i(DWTELEM *b, int width){
DWTELEM temp[width];
@@ -895,7 +895,7 @@ static void horizontal_decompose53i(DWTELEM *b, int width){
#else
lift(b+w2, temp+w2, temp, 1, 1, 1, width, -1, 0, 1, 1, 0);
lift(b , temp , b+w2, 1, 1, 1, width, 1, 2, 2, 0, 0);
-#endif
+#endif /* 0 */
}
static void vertical_decompose53iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){