summaryrefslogtreecommitdiff
path: root/libavcodec/x86/blockdsp_init.c
diff options
context:
space:
mode:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2015-09-28 14:03:36 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-10-03 23:34:56 +0200
commitf827a170052e16445366cd34ca0cb6c12fd000a6 (patch)
tree19f65e987a5c96a4497c71fa0897288c69c01311 /libavcodec/x86/blockdsp_init.c
parentc4c389aa146a8a4e6fb8cfe43ddeea537e9cb510 (diff)
blockdsp: reindent after parameter removal
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/x86/blockdsp_init.c')
-rw-r--r--libavcodec/x86/blockdsp_init.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/x86/blockdsp_init.c b/libavcodec/x86/blockdsp_init.c
index 18322f39fd..21599934ff 100644
--- a/libavcodec/x86/blockdsp_init.c
+++ b/libavcodec/x86/blockdsp_init.c
@@ -37,18 +37,18 @@ av_cold void ff_blockdsp_init_x86(BlockDSPContext *c,
#if HAVE_YASM
int cpu_flags = av_get_cpu_flags();
- if (EXTERNAL_MMX(cpu_flags)) {
- c->clear_block = ff_clear_block_mmx;
- c->clear_blocks = ff_clear_blocks_mmx;
- }
+ if (EXTERNAL_MMX(cpu_flags)) {
+ c->clear_block = ff_clear_block_mmx;
+ c->clear_blocks = ff_clear_blocks_mmx;
+ }
/* XvMCCreateBlocks() may not allocate 16-byte aligned blocks */
if (CONFIG_XVMC && avctx->hwaccel && avctx->hwaccel->decode_mb)
return;
- if (EXTERNAL_SSE(cpu_flags)) {
- c->clear_block = ff_clear_block_sse;
- c->clear_blocks = ff_clear_blocks_sse;
- }
+ if (EXTERNAL_SSE(cpu_flags)) {
+ c->clear_block = ff_clear_block_sse;
+ c->clear_blocks = ff_clear_blocks_sse;
+ }
#endif /* HAVE_YASM */
}