diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-25 14:35:52 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-09-02 16:32:57 +0100 |
commit | 15616eb04206b64bcf08ad351f4c754e69e00666 (patch) | |
tree | a1c88084e31cf10946f29b19bb0d6acc05aa6893 /libavcodec/dsputil.h | |
parent | 12c8912de2f2c1a235a7578d6a288e217c3fb504 (diff) | |
download | ffmpeg-15616eb04206b64bcf08ad351f4c754e69e00666.tar.gz |
intrax8: move functions from dsputil to own context
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index e818fb092f..e47cd2cec2 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -372,9 +372,6 @@ typedef struct DSPContext { void (*h261_loop_filter)(uint8_t *src, int stride); - void (*x8_v_loop_filter)(uint8_t *src, int stride, int qscale); - void (*x8_h_loop_filter)(uint8_t *src, int stride, int qscale); - /* assume len is a multiple of 4, and arrays are 16-byte aligned */ void (*vorbis_inverse_coupling)(float *mag, float *ang, int blocksize); void (*ac3_downmix)(float (*samples)[256], float (*matrix)[2], int out_ch, int in_ch, int len); @@ -489,11 +486,6 @@ typedef struct DSPContext { unsigned int filter_shift, int32_t mask, int blocksize, int32_t *sample_buffer); - /* intrax8 functions */ - void (*x8_spatial_compensation[12])(uint8_t *src , uint8_t *dst, int linesize); - void (*x8_setup_spatial_compensation)(uint8_t *src, uint8_t *dst, int linesize, - int * range, int * sum, int edges); - /** * Calculate scalar product of two vectors. * @param len length of vectors, should be multiple of 16 @@ -621,7 +613,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_intrax8dsp_init(DSPContext* c, AVCodecContext *avctx); void ff_mlp_init(DSPContext* c, AVCodecContext *avctx); void ff_mlp_init_x86(DSPContext* c, AVCodecContext *avctx); |