diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-21 07:43:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-21 07:43:49 +0000 |
commit | 14ee9d1539ca5b0612484ce5391d7b38a559a341 (patch) | |
tree | e4fe6ea42ac55db990d902712fcb36d35e3e4d5b | |
parent | 720537282b6878d64812c2d89579713e22bc167d (diff) | |
download | ffmpeg-14ee9d1539ca5b0612484ce5391d7b38a559a341.tar.gz |
remove unused vp3 related function pointers
Originally committed as revision 4293 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dsputil.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 69a4f39dfc..80ae97ac43 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -323,24 +323,6 @@ typedef struct DSPContext { void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale); #define BASIS_SHIFT 16 #define RECON_SHIFT 6 - - /** - * This function handles any initialization for the VP3 DSP functions. - */ - void (*vp3_dsp_init)(void); - - /** - * This function is responsible for taking a block of zigzag'd, - * quantized DCT coefficients and reconstructing the original block of - * samples. - * @param input_data 64 zigzag'd, quantized DCT coefficients - * @param dequant_matrix 64 zigzag'd quantizer coefficients - * @param coeff_count index of the last coefficient - * @param output_samples space for 64 DCTELEMs where the transformed - * samples will be stored - */ - void (*vp3_idct)(int16_t *input_data, int16_t *dequant_matrix, - int coeff_count, DCTELEM *output_samples); void (*h264_idct_add)(uint8_t *dst, DCTELEM *block, int stride); } DSPContext; |