diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-08 10:41:18 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-08 10:41:18 +0000 |
commit | d2e45f33a4f3ebafb9a097a0dea844697d79c494 (patch) | |
tree | 6d516345e8912e25a4637bea78025f9907a47003 /libavcodec/dsputil.h | |
parent | 30ea3075442fc0380e0d5de835324d5db1f22194 (diff) | |
download | ffmpeg-d2e45f33a4f3ebafb9a097a0dea844697d79c494.tar.gz |
Switch VC-1 decoder to output decoded residual immediately.
Originally committed as revision 11188 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 273069c1e8..b076e60f58 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -407,9 +407,9 @@ typedef struct DSPContext { /* vc1 functions */ void (*vc1_inv_trans_8x8)(DCTELEM *b); - void (*vc1_inv_trans_8x4)(DCTELEM *b, int n); - void (*vc1_inv_trans_4x8)(DCTELEM *b, int n); - void (*vc1_inv_trans_4x4)(DCTELEM *b, int n); + void (*vc1_inv_trans_8x4)(uint8_t *dest, int line_size, DCTELEM *block); + void (*vc1_inv_trans_4x8)(uint8_t *dest, int line_size, DCTELEM *block); + void (*vc1_inv_trans_4x4)(uint8_t *dest, int line_size, DCTELEM *block); void (*vc1_v_overlap)(uint8_t* src, int stride); void (*vc1_h_overlap)(uint8_t* src, int stride); /* put 8x8 block with bicubic interpolation and quarterpel precision |