diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-29 15:05:53 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-30 18:50:33 +0200 |
commit | a886b279a0f309b83b28612eb7661402cb1e41ef (patch) | |
tree | 6cc35ff8e06849c934a0650db5ab3d05ea36233c /libswscale/x86 | |
parent | 04fc5c6bde5da842e8b40a9a76eb72c8327ae40b (diff) | |
download | ffmpeg-a886b279a0f309b83b28612eb7661402cb1e41ef.tar.gz |
x86: cosmetics: Comment some #endifs for better readability
Diffstat (limited to 'libswscale/x86')
-rw-r--r-- | libswscale/x86/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/x86/swscale.c b/libswscale/x86/swscale.c index 9683c0cedd..db9fb732b9 100644 --- a/libswscale/x86/swscale.c +++ b/libswscale/x86/swscale.c @@ -395,7 +395,7 @@ switch(c->dstBpc){ \ if (cpu_flags & AV_CPU_FLAG_MMXEXT) { ASSIGN_VSCALEX_FUNC(c->yuv2planeX, mmx2, , 1); } -#endif +#endif /* ARCH_X86_32 */ #define ASSIGN_SSE_SCALE_FUNC(hscalefn, filtersize, opt1, opt2) \ switch (filtersize) { \ case 4: ASSIGN_SCALE_FUNC2(hscalefn, 4, opt1, opt2); break; \ |