comparison armv4l/mpegvideo_iwmmxt.c @ 2776:930e56f92c57 libavcodec

IWMMXT configure support + runtime selection patch by (Gildas Bazin, gbazin : altern org)
author michael
date Tue, 28 Jun 2005 22:46:36 +0000
parents aeea63c97878
children c537a97eec66
comparison
equal deleted inserted replaced
2775:f3cdd51c9e16 2776:930e56f92c57
88 } 88 }
89 #endif 89 #endif
90 90
91 void MPV_common_init_iwmmxt(MpegEncContext *s) 91 void MPV_common_init_iwmmxt(MpegEncContext *s)
92 { 92 {
93 if (!(mm_flags & MM_IWMMXT)) return;
94
93 s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_iwmmxt; 95 s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_iwmmxt;
94 #if 0 96 #if 0
95 s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_iwmmxt; 97 s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_iwmmxt;
96 #endif 98 #endif
97 } 99 }