diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:37:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-11-09 21:37:48 +0000 |
commit | 9abc7e0fdc5b99e4503e22c9084195867e312222 (patch) | |
tree | 8ac15df58b6288baa986b892fa33ac1cf7fffe28 /libavcodec/dsputil.h | |
parent | a9d5a4485ae53f263f67a3804d8edabe65c955c2 (diff) | |
download | ffmpeg-9abc7e0fdc5b99e4503e22c9084195867e312222.tar.gz |
intrax8 decoder patch by "someone"
Originally committed as revision 10971 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 6cb22fb9e8..1ecf402913 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -48,6 +48,7 @@ void j_rev_dct (DCTELEM *data); void j_rev_dct4 (DCTELEM *data); void j_rev_dct2 (DCTELEM *data); void j_rev_dct1 (DCTELEM *data); +void ff_wmv2_idct_c(DCTELEM *data); void ff_fdct_mmx(DCTELEM *block); void ff_fdct_mmx2(DCTELEM *block); @@ -326,6 +327,9 @@ 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); /* no alignment needed */ @@ -412,6 +416,12 @@ typedef struct DSPContext { * last argument is actually round value instead of height */ op_pixels_func put_vc1_mspel_pixels_tab[16]; + + /* intrax8 functions */ + void (*x8_spacial_compensation[12])(uint8_t *src , uint8_t *dst, int linesize); + void (*x8_setup_spacial_compensation)(uint8_t *src, uint8_t *dst, int linesize, + int * range, int * sum, int edges); + } DSPContext; void dsputil_static_init(void); |