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/hevc_filter.c | |
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/hevc_filter.c')
-rw-r--r-- | libavcodec/hevc_filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevc_filter.c b/libavcodec/hevc_filter.c index 9f59170be7..4c8642007e 100644 --- a/libavcodec/hevc_filter.c +++ b/libavcodec/hevc_filter.c @@ -337,8 +337,8 @@ static void deblocking_filter_CTB(HEVCContext *s, int x0, int y0) { uint8_t *src; int x, y; - int chroma; - int c_tc[2], tc[2], beta; + int chroma, beta; + int32_t c_tc[2], tc[2]; uint8_t no_p[2] = { 0 }; uint8_t no_q[2] = { 0 }; |