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/dsputil.h | |
parent | 25dc79bc1433f2689b69aa1293e311ed69a95a8a (diff) | |
download | ffmpeg-2d6caade22334f5c0e999ebfe5f0f20c1b18aafc.tar.gz |
dsputil: split out mlp dsp function
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 6ce41df006..da3e7586e2 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -479,12 +479,6 @@ typedef struct DSPContext { void (*shrink[4])(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height); - /* mlp/truehd functions */ - void (*mlp_filter_channel)(int32_t *state, const int32_t *coeff, - int firorder, int iirorder, - unsigned int filter_shift, int32_t mask, int blocksize, - int32_t *sample_buffer); - /** * Calculate scalar product of two vectors. * @param len length of vectors, should be multiple of 16 @@ -612,8 +606,6 @@ void ff_dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_dwt(DSPContext *c); -void ff_mlp_init(DSPContext* c, AVCodecContext *avctx); -void ff_mlp_init_x86(DSPContext* c, AVCodecContext *avctx); #if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMI || HAVE_MMX # define STRIDE_ALIGN 16 |