diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-08-04 22:29:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-06 12:38:26 +0200 |
commit | 6786848585dc67c11bfb8eaf0197d1b96027a4ee (patch) | |
tree | 46f705bfca40520dcf40b277866c95d8983cfd73 /libavcodec/hevcdsp.h | |
parent | 9f02a2b2240028de6bf48659170ea697f393a2ee (diff) | |
download | ffmpeg-6786848585dc67c11bfb8eaf0197d1b96027a4ee.tar.gz |
hevc_deblock: change tc type
The x86 asm expects int32_t so use that type.
Reviewed-by: Mickaƫl Raulet <mraulet@insa-rennes.fr>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevcdsp.h')
-rw-r--r-- | libavcodec/hevcdsp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/hevcdsp.h b/libavcodec/hevcdsp.h index c18bc865e9..2736037dfc 100644 --- a/libavcodec/hevcdsp.h +++ b/libavcodec/hevcdsp.h @@ -95,26 +95,26 @@ typedef struct HEVCDSPContext { int ox1, intptr_t mx, intptr_t my, int width); void (*hevc_h_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, - int beta, int *tc, + int beta, int32_t *tc, uint8_t *no_p, uint8_t *no_q); void (*hevc_v_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, - int beta, int *tc, + int beta, int32_t *tc, uint8_t *no_p, uint8_t *no_q); void (*hevc_h_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride, - int *tc, uint8_t *no_p, uint8_t *no_q); + int32_t *tc, uint8_t *no_p, uint8_t *no_q); void (*hevc_v_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride, - int *tc, uint8_t *no_p, uint8_t *no_q); + int32_t *tc, uint8_t *no_p, uint8_t *no_q); void (*hevc_h_loop_filter_luma_c)(uint8_t *pix, ptrdiff_t stride, - int beta, int *tc, + int beta, int32_t *tc, uint8_t *no_p, uint8_t *no_q); void (*hevc_v_loop_filter_luma_c)(uint8_t *pix, ptrdiff_t stride, - int beta, int *tc, + int beta, int32_t *tc, uint8_t *no_p, uint8_t *no_q); void (*hevc_h_loop_filter_chroma_c)(uint8_t *pix, ptrdiff_t stride, - int *tc, uint8_t *no_p, + int32_t *tc, uint8_t *no_p, uint8_t *no_q); void (*hevc_v_loop_filter_chroma_c)(uint8_t *pix, ptrdiff_t stride, - int *tc, uint8_t *no_p, + int32_t *tc, uint8_t *no_p, uint8_t *no_q); } HEVCDSPContext; |