# HG changeset patch # User diego # Date 1179730902 0 # Node ID 6e7e23b6615df47e6e82bbf0dbbe870bb4f53491 # Parent 34a5f37c4bf7298bb6d70715cef2efb3c431c5cd Add explanatory comments to some #endifs. diff -r 34a5f37c4bf7 -r 6e7e23b6615d imgresample.c --- a/imgresample.c Sun May 20 22:59:32 2007 +0000 +++ b/imgresample.c Mon May 21 07:01:42 2007 +0000 @@ -282,7 +282,7 @@ } emms(); } -#endif +#endif /* HAVE_MMX */ #ifdef HAVE_ALTIVEC typedef union { @@ -409,7 +409,7 @@ 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 @@ exit(1); } av_log(NULL, AV_LOG_INFO, "MMX OK\n"); -#endif +#endif /* HAVE_MMX */ return 0; } -#endif +#endif /* TEST */