diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-29 16:15:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-29 16:15:54 +0200 |
commit | f896f92337e71cc7dd3d4d2c37c8b04435e37d15 (patch) | |
tree | 8a2c51883ffef3d25214de87dafb22d4dc4f501e /libavcodec/vc1dsp.c | |
parent | e1c3e6277f095a258a3676263202a595c044f57b (diff) | |
parent | 67e6a9f558fbf7a72137abd0034a3f11249ab8bb (diff) | |
download | ffmpeg-f896f92337e71cc7dd3d4d2c37c8b04435e37d15.tar.gz |
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.c | 4 |
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); } |