comparison mlpdsp.c @ 11376:0b220468ba0d libavcodec

Move prototypes for various dsputil init functions to dsputil.h
author mru
date Sat, 06 Mar 2010 22:36:49 +0000
parents 1db34b8dcf15
children
comparison
equal deleted inserted replaced
11375:84963c795459 11376:0b220468ba0d
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
60 void ff_mlp_init(DSPContext* c, AVCodecContext *avctx) 58 void ff_mlp_init(DSPContext* c, AVCodecContext *avctx)
61 { 59 {
62 c->mlp_filter_channel = ff_mlp_filter_channel; 60 c->mlp_filter_channel = ff_mlp_filter_channel;
63 if (ARCH_X86) 61 if (ARCH_X86)
64 ff_mlp_init_x86(c, avctx); 62 ff_mlp_init_x86(c, avctx);