diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-05-21 07:01:42 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-05-21 07:01:42 +0000 |
commit | fca6a0dd341b8e0ee27dd15028a6b1dcbec85c22 (patch) | |
tree | 37259d1815aaa997653a74a8b6240c832c960571 /libavcodec | |
parent | 9f77cab2a0b770a73169b27659bc4e894cd4e805 (diff) | |
download | ffmpeg-fca6a0dd341b8e0ee27dd15028a6b1dcbec85c22.tar.gz |
Add explanatory comments to some #endifs.
Originally committed as revision 9084 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/imgresample.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index 2722d5acf7..cacf0f3275 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 */ |