summaryrefslogtreecommitdiff
path: root/libavcodec/vc1dsp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-29 16:15:50 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-29 16:15:54 +0200
commitf896f92337e71cc7dd3d4d2c37c8b04435e37d15 (patch)
tree8a2c51883ffef3d25214de87dafb22d4dc4f501e /libavcodec/vc1dsp.c
parente1c3e6277f095a258a3676263202a595c044f57b (diff)
parent67e6a9f558fbf7a72137abd0034a3f11249ab8bb (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: cosmetics: Place arch initialization calls in alphabetical order Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1dsp.c')
-rw-r--r--libavcodec/vc1dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc1dsp.c b/libavcodec/vc1dsp.c
index 39e94418fa..aab9d1aa6d 100644
--- a/libavcodec/vc1dsp.c
+++ b/libavcodec/vc1dsp.c
@@ -888,8 +888,8 @@ av_cold void ff_vc1dsp_init(VC1DSPContext* dsp) {
dsp->sprite_v_double_twoscale = sprite_v_double_twoscale_c;
#endif
- if (ARCH_X86)
- ff_vc1dsp_init_x86(dsp);
if (ARCH_PPC)
ff_vc1dsp_init_ppc(dsp);
+ if (ARCH_X86)
+ ff_vc1dsp_init_x86(dsp);
}