summaryrefslogtreecommitdiff
path: root/libavcodec/x86/fmtconvert_init.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-29 15:05:53 +0200
committerDiego Biurrun <diego@biurrun.de>2012-08-30 18:50:33 +0200
commita886b279a0f309b83b28612eb7661402cb1e41ef (patch)
tree6cc35ff8e06849c934a0650db5ab3d05ea36233c /libavcodec/x86/fmtconvert_init.c
parent04fc5c6bde5da842e8b40a9a76eb72c8327ae40b (diff)
x86: cosmetics: Comment some #endifs for better readability
Diffstat (limited to 'libavcodec/x86/fmtconvert_init.c')
-rw-r--r--libavcodec/x86/fmtconvert_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/fmtconvert_init.c b/libavcodec/x86/fmtconvert_init.c
index 6f3d14aedc..e781adbd41 100644
--- a/libavcodec/x86/fmtconvert_init.c
+++ b/libavcodec/x86/fmtconvert_init.c
@@ -110,7 +110,7 @@ static void float_interleave_sse(float *dst, const float **src,
else
ff_float_interleave_c(dst, src, len, channels);
}
-#endif
+#endif /* HAVE_YASM */
void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx)
{
@@ -143,5 +143,5 @@ void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx)
c->float_to_int16_interleave = float_to_int16_interleave_sse2;
}
}
-#endif
+#endif /* HAVE_YASM */
}