Commit eb348443 authored by michael's avatar michael

remove unused vp3 related function pointers


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4293 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a65b2512
...@@ -324,24 +324,6 @@ typedef struct DSPContext { ...@@ -324,24 +324,6 @@ typedef struct DSPContext {
#define BASIS_SHIFT 16 #define BASIS_SHIFT 16
#define RECON_SHIFT 6 #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); void (*h264_idct_add)(uint8_t *dst, DCTELEM *block, int stride);
} DSPContext; } DSPContext;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment