Mercurial > libavcodec.hg
diff imgresample.c @ 5054:6e7e23b6615d libavcodec
Add explanatory comments to some #endifs.
| author | diego |
|---|---|
| date | Mon, 21 May 2007 07:01:42 +0000 |
| parents | 6a900f539e2c |
| children | 4ffb80ba1d2a |
line wrap: on
line diff
--- 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 */
