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 /libavcodec/x86/vc1dsp_mmx.c | |
parent | 04fc5c6bde5da842e8b40a9a76eb72c8327ae40b (diff) | |
download | ffmpeg-a886b279a0f309b83b28612eb7661402cb1e41ef.tar.gz |
x86: cosmetics: Comment some #endifs for better readability
Diffstat (limited to 'libavcodec/x86/vc1dsp_mmx.c')
-rw-r--r-- | libavcodec/x86/vc1dsp_mmx.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/x86/vc1dsp_mmx.c b/libavcodec/x86/vc1dsp_mmx.c index f7ca714481..1bf06fa3b0 100644 --- a/libavcodec/x86/vc1dsp_mmx.c +++ b/libavcodec/x86/vc1dsp_mmx.c @@ -718,8 +718,7 @@ static void vc1_h_loop_filter16_sse4(uint8_t *src, int stride, int pq) ff_vc1_h_loop_filter8_sse4(src, stride, pq); ff_vc1_h_loop_filter8_sse4(src+8*stride, stride, pq); } - -#endif +#endif /* HAVE_YASM */ void ff_put_vc1_chroma_mc8_mmx_nornd (uint8_t *dst, uint8_t *src, int stride, int h, int x, int y); @@ -822,5 +821,5 @@ void ff_vc1dsp_init_mmx(VC1DSPContext *dsp) dsp->vc1_h_loop_filter8 = ff_vc1_h_loop_filter8_sse4; dsp->vc1_h_loop_filter16 = vc1_h_loop_filter16_sse4; } -#endif +#endif /* HAVE_YASM */ } |