comparison mlpdsp.c @ 9705:1db34b8dcf15 libavcodec

mlp: Re-enable x86-optimized DSP functions.
author ramiro
date Mon, 25 May 2009 01:53:43 +0000
parents 61b77bb5414a
children 0b220468ba0d
comparison
equal deleted inserted replaced
9704:dc3c984a1c1a 9705:1db34b8dcf15
53 *sample_buffer = result; 53 *sample_buffer = result;
54 sample_buffer += MAX_CHANNELS; 54 sample_buffer += MAX_CHANNELS;
55 } 55 }
56 } 56 }
57 57
58 void ff_mlp_init_x86(DSPContext* c, AVCodecContext *avctx);
59
58 void ff_mlp_init(DSPContext* c, AVCodecContext *avctx) 60 void ff_mlp_init(DSPContext* c, AVCodecContext *avctx)
59 { 61 {
60 c->mlp_filter_channel = ff_mlp_filter_channel; 62 c->mlp_filter_channel = ff_mlp_filter_channel;
63 if (ARCH_X86)
64 ff_mlp_init_x86(c, avctx);
61 } 65 }