diff options
author | Christophe GISQUET <christophe.gisquet@gmail.com> | 2012-01-03 20:38:29 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-01-16 19:26:41 +0100 |
commit | 9ba9c3402499d90e54f8aa111b62c278206d11af (patch) | |
tree | ac059d08bf032cfbf7454c02e72bd5175a2e5b70 /libavcodec/rv34dsp.h | |
parent | ffa0923eee7707acf07a0847b6bac89b86e227dc (diff) | |
download | ffmpeg-9ba9c3402499d90e54f8aa111b62c278206d11af.tar.gz |
rv34: 1-pass inter MB reconstruction
Implement 1-pass inverse transform and reconstruction for inter blocks.
Diffstat (limited to 'libavcodec/rv34dsp.h')
-rw-r--r-- | libavcodec/rv34dsp.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/rv34dsp.h b/libavcodec/rv34dsp.h index 2e9e58e64a..fe8fcaa8dd 100644 --- a/libavcodec/rv34dsp.h +++ b/libavcodec/rv34dsp.h @@ -36,8 +36,7 @@ typedef void (*rv40_weight_func)(uint8_t *dst/*align width (8 or 16)*/, typedef void (*rv34_inv_transform_func)(DCTELEM *block); -typedef void (*rv34_idct_add_func)(uint8_t *dst, int stride, - const DCTELEM *block); +typedef void (*rv34_idct_add_func)(uint8_t *dst, int stride, DCTELEM *block); typedef void (*rv34_idct_dc_add_func)(uint8_t *dst, int stride, int dc); @@ -60,8 +59,8 @@ typedef struct RV34DSPContext { h264_chroma_mc_func put_chroma_pixels_tab[3]; h264_chroma_mc_func avg_chroma_pixels_tab[3]; rv40_weight_func rv40_weight_pixels_tab[2]; - rv34_inv_transform_func rv34_inv_transform_tab[2]; - void (*rv34_inv_transform_dc_tab[2])(DCTELEM *block); + rv34_inv_transform_func rv34_inv_transform; + rv34_inv_transform_func rv34_inv_transform_dc; rv34_idct_add_func rv34_idct_add; rv34_idct_dc_add_func rv34_idct_dc_add; rv40_weak_loop_filter_func rv40_weak_loop_filter[2]; |