diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-07-03 00:16:45 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-07-03 00:16:45 +0000 |
commit | b482e2d12fdc380b48a3aa55334c698b9a36b82d (patch) | |
tree | 23b9cebd82163344f9e5adda7e985933a203f8e7 /libavcodec/dsputil.h | |
parent | 3f8674a9029435cb8102d683f9c896b874228622 (diff) | |
download | ffmpeg-b482e2d12fdc380b48a3aa55334c698b9a36b82d.tar.gz |
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
Originally committed as revision 5590 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index ce37cf46e5..fb84b20e00 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -274,6 +274,15 @@ typedef struct DSPContext { h264_weight_func weight_h264_pixels_tab[10]; h264_biweight_func biweight_h264_pixels_tab[10]; + /* AVS specific */ + qpel_mc_func put_cavs_qpel_pixels_tab[2][16]; + qpel_mc_func avg_cavs_qpel_pixels_tab[2][16]; + void (*cavs_filter_lv)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2); + void (*cavs_filter_lh)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2); + void (*cavs_filter_cv)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2); + void (*cavs_filter_ch)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2); + void (*cavs_idct8_add)(uint8_t *dst, DCTELEM *block, int stride); + me_cmp_func pix_abs[2][4]; /* huffyuv specific */ |