Mercurial > libavcodec.hg
changeset 5054:6e7e23b6615d libavcodec
Add explanatory comments to some #endifs.
author | diego |
---|---|
date | Mon, 21 May 2007 07:01:42 +0000 |
parents | 34a5f37c4bf7 |
children | 4ffb80ba1d2a |
files | imgresample.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
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 */