diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2014-07-14 21:17:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-15 13:37:27 +0200 |
commit | 250430bf28118cf843df887e8c8b345f1c60c82d (patch) | |
tree | 36906b3a30cadbaffe28cf554d5dacd9cb99d7f4 /libavcodec/hevcdsp.h | |
parent | 255086a7e06417d98417cea192053b8a8531eb24 (diff) | |
download | ffmpeg-250430bf28118cf843df887e8c8b345f1c60c82d.tar.gz |
hevc: separate residu and prediction (needed for Range Extension)
(cherry picked from commit 6b3856ef57d66f2e59ee61fd2eb5f83b6d0d7d4a)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r-- | libavcodec/hevcdsp.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index 3a76fc4937..e17ee7b4ce 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -44,13 +44,15 @@ typedef struct HEVCDSPContext { void (*put_pcm)(uint8_t *dst, ptrdiff_t stride, int size, GetBitContext *gb, int pcm_bit_depth); - void (*transquant_bypass[4])(uint8_t *dst, int16_t *coeffs, - ptrdiff_t stride); + void (*transform_add[4])(uint8_t *_dst, int16_t *coeffs, ptrdiff_t _stride); - void (*transform_skip)(uint8_t *dst, int16_t *coeffs, ptrdiff_t stride); - void (*transform_4x4_luma_add)(uint8_t *dst, int16_t *coeffs, - ptrdiff_t stride); - void (*transform_add[4])(uint8_t *dst, int16_t *coeffs, ptrdiff_t _stride, int col_limit); + void (*transform_skip)(int16_t *coeffs, int16_t log2_size); + + void (*idct_4x4_luma)(int16_t *coeffs); + + void (*idct[4])(int16_t *coeffs, int col_limit); + + void (*idct_dc[4])(int16_t *coeffs); void (*transform_dc_add[4])(uint8_t *dst, int16_t *coeffs, ptrdiff_t stride); |