diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-07-28 12:13:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-22 15:22:42 +0200 |
commit | dad7f155678f5325a04b26791cd51fd49522d00c (patch) | |
tree | 99c6288bf5741e935a904041b09905ac0f164f79 /libavcodec/hevcdsp.h | |
parent | d4f44b66d36c405d5152d8d333cc4a35c7766af0 (diff) | |
download | ffmpeg-dad7f155678f5325a04b26791cd51fd49522d00c.tar.gz |
hevcdsp: remove more instances of compile-time-fixed parameters
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r-- | libavcodec/hevcdsp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index 4244fd821e..ced3b99e1f 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -75,10 +75,10 @@ typedef struct HEVCDSPContext { int height, int denom, int wx, int ox, intptr_t mx, intptr_t my, int width); void (*put_hevc_qpel_bi[10][2][2])(uint8_t *dst, ptrdiff_t dststride, uint8_t *_src, ptrdiff_t _srcstride, - int16_t *src2, ptrdiff_t src2stride, + int16_t *src2, int height, intptr_t mx, intptr_t my, int width); void (*put_hevc_qpel_bi_w[10][2][2])(uint8_t *dst, ptrdiff_t dststride, uint8_t *_src, ptrdiff_t _srcstride, - int16_t *src2, ptrdiff_t src2stride, + int16_t *src2, int height, int denom, int wx0, int wx1, int ox0, int ox1, intptr_t mx, intptr_t my, int width); void (*put_hevc_epel[10][2][2])(int16_t *dst, uint8_t *src, ptrdiff_t srcstride, @@ -89,10 +89,10 @@ typedef struct HEVCDSPContext { void (*put_hevc_epel_uni_w[10][2][2])(uint8_t *_dst, ptrdiff_t _dststride, uint8_t *_src, ptrdiff_t _srcstride, int height, int denom, int wx, int ox, intptr_t mx, intptr_t my, int width); void (*put_hevc_epel_bi[10][2][2])(uint8_t *dst, ptrdiff_t dststride, uint8_t *_src, ptrdiff_t _srcstride, - int16_t *src2, ptrdiff_t src2stride, + int16_t *src2, int height, intptr_t mx, intptr_t my, int width); void (*put_hevc_epel_bi_w[10][2][2])(uint8_t *dst, ptrdiff_t dststride, uint8_t *_src, ptrdiff_t _srcstride, - int16_t *src2, ptrdiff_t src2stride, + int16_t *src2, int height, int denom, int wx0, int ox0, int wx1, int ox1, intptr_t mx, intptr_t my, int width); |