From 30eb66900ff0f62e2bbee0b3577bda9a81a14ae4 Mon Sep 17 00:00:00 2001
From: diego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Date: Mon, 21 May 2007 07:01:42 +0000
Subject: [PATCH] Add explanatory comments to some #endifs.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9084 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
---
 libavcodec/imgresample.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c
index 2722d5acf..cacf0f327 100644
--- a/libavcodec/imgresample.c
+++ b/libavcodec/imgresample.c
@@ -282,7 +282,7 @@ static void v_resample4_mmx(uint8_t *dst, int dst_width, const uint8_t *src,
     }
     emms();
 }
-#endif
+#endif /* HAVE_MMX */
 
 #ifdef HAVE_ALTIVEC
 typedef         union {
@@ -409,7 +409,7 @@ void v_resample16_altivec(uint8_t *dst, int dst_width, const uint8_t *src,
         dst_width--;
     }
 }
-#endif
+#endif /* HAVE_ALTIVEC */
 
 /* slow version to handle limit cases. Does not need optimisation */
 static void h_resample_slow(uint8_t *dst, int dst_width,
@@ -942,8 +942,8 @@ int main(int argc, char **argv)
         exit(1);
     }
     av_log(NULL, AV_LOG_INFO, "MMX OK\n");
-#endif
+#endif /* HAVE_MMX */
     return 0;
 }
 
-#endif
+#endif /* TEST */
-- 
2.25.4