diff options
author | Kieran Kunhya <kierank@ob-encoder.com> | 2015-12-09 08:24:36 +0000 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-12-10 18:25:02 +0000 |
commit | 3f07f12f65e56d1cf96e5ac2cefc0ad9c7bfb6af (patch) | |
tree | cae42009ffbc267c02e97adc810ff97b26303dbf /libavcodec/diracdsp.h | |
parent | 9553689854d61069ae3467f9b46dac43ee991d96 (diff) | |
download | ffmpeg-3f07f12f65e56d1cf96e5ac2cefc0ad9c7bfb6af.tar.gz |
diracdec: Template DSP functions adding 10-bit versions
Diffstat (limited to 'libavcodec/diracdsp.h')
-rw-r--r-- | libavcodec/diracdsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/diracdsp.h b/libavcodec/diracdsp.h index 613ca5bc83..439bda26a5 100644 --- a/libavcodec/diracdsp.h +++ b/libavcodec/diracdsp.h @@ -41,8 +41,8 @@ typedef struct { void (*put_dirac_pixels_tab[3][4])(uint8_t *dst, const uint8_t *src[5], int stride, int h); void (*avg_dirac_pixels_tab[3][4])(uint8_t *dst, const uint8_t *src[5], int stride, int h); - void (*put_signed_rect_clamped)(uint8_t *dst/*align 16*/, int dst_stride, const int16_t *src/*align 16*/, int src_stride, int width, int height/*mod 2*/); - void (*put_rect_clamped)(uint8_t *dst/*align 16*/, int dst_stride, const int16_t *src/*align 16*/, int src_stride, int width, int height/*mod 2*/); + void (*put_signed_rect_clamped[3])(uint8_t *dst/*align 16*/, int dst_stride, const uint8_t *src/*align 16*/, int src_stride, int width, int height/*mod 2*/); + void (*put_rect_clamped)(uint8_t *dst/*align 16*/, int dst_stride, const uint8_t *src/*align 16*/, int src_stride, int width, int height/*mod 2*/); void (*add_rect_clamped)(uint8_t *dst/*align 16*/, const uint16_t *src/*align 16*/, int stride, const int16_t *idwt/*align 16*/, int idwt_stride, int width, int height/*mod 2*/); void (*add_dirac_obmc[3])(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen); |