diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2012-10-11 02:01:41 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2012-10-11 12:01:08 +0200 |
commit | 2d6caade22334f5c0e999ebfe5f0f20c1b18aafc (patch) | |
tree | 6bddc6b68abc5c1ad7a8674a436c2bb53b6fd9e5 /libavcodec/x86/mlpdsp.c | |
parent | 25dc79bc1433f2689b69aa1293e311ed69a95a8a (diff) | |
download | ffmpeg-2d6caade22334f5c0e999ebfe5f0f20c1b18aafc.tar.gz |
dsputil: split out mlp dsp function
Diffstat (limited to 'libavcodec/x86/mlpdsp.c')
-rw-r--r-- | libavcodec/x86/mlpdsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/mlpdsp.c b/libavcodec/x86/mlpdsp.c index 8f886aacbf..a18e9fa67b 100644 --- a/libavcodec/x86/mlpdsp.c +++ b/libavcodec/x86/mlpdsp.c @@ -21,7 +21,7 @@ #include "libavutil/internal.h" #include "libavutil/x86/asm.h" -#include "libavcodec/dsputil.h" +#include "libavcodec/mlpdsp.h" #include "libavcodec/mlp.h" #if HAVE_7REGS && HAVE_INLINE_ASM @@ -174,7 +174,7 @@ static void mlp_filter_channel_x86(int32_t *state, const int32_t *coeff, #endif /* HAVE_7REGS && HAVE_INLINE_ASM */ -void ff_mlp_init_x86(DSPContext* c, AVCodecContext *avctx) +void ff_mlpdsp_init_x86(MLPDSPContext *c) { #if HAVE_7REGS && HAVE_INLINE_ASM c->mlp_filter_channel = mlp_filter_channel_x86; |