summaryrefslogtreecommitdiff
path: root/libavcodec/x86
diff options
context:
space:
mode:
authorMartin Vignali <martin.vignali@gmail.com>2018-11-17 23:35:52 +0100
committerMartin Vignali <martin.vignali@gmail.com>2018-12-02 12:55:35 +0100
commit9a22e6fa1dec29cc2f8bc3cd217d20573e19ebe7 (patch)
treeecd7c323d4fed387f5be93d5fcb71ef2cf99964d /libavcodec/x86
parentc097a32e93b4b4d9cb576bf21014b19121806161 (diff)
avcodec/proresdsp indent after prev commit
Diffstat (limited to 'libavcodec/x86')
-rw-r--r--libavcodec/x86/proresdsp_init.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/x86/proresdsp_init.c b/libavcodec/x86/proresdsp_init.c
index 747aeb826e..bde79ab8c0 100644
--- a/libavcodec/x86/proresdsp_init.c
+++ b/libavcodec/x86/proresdsp_init.c
@@ -36,15 +36,15 @@ av_cold void ff_proresdsp_init_x86(ProresDSPContext *dsp, AVCodecContext *avctx)
int cpu_flags = av_get_cpu_flags();
if (avctx->bits_per_raw_sample == 10){
- if (EXTERNAL_SSE2(cpu_flags)) {
- dsp->idct_permutation_type = FF_IDCT_PERM_TRANSPOSE;
- dsp->idct_put = ff_prores_idct_put_10_sse2;
- }
+ if (EXTERNAL_SSE2(cpu_flags)) {
+ dsp->idct_permutation_type = FF_IDCT_PERM_TRANSPOSE;
+ dsp->idct_put = ff_prores_idct_put_10_sse2;
+ }
- if (EXTERNAL_AVX(cpu_flags)) {
- dsp->idct_permutation_type = FF_IDCT_PERM_TRANSPOSE;
- dsp->idct_put = ff_prores_idct_put_10_avx;
- }
+ if (EXTERNAL_AVX(cpu_flags)) {
+ dsp->idct_permutation_type = FF_IDCT_PERM_TRANSPOSE;
+ dsp->idct_put = ff_prores_idct_put_10_avx;
+ }
}
#endif /* ARCH_X86_64 */
}