From 6786848585dc67c11bfb8eaf0197d1b96027a4ee Mon Sep 17 00:00:00 2001 From: Christophe Gisquet Date: Mon, 4 Aug 2014 22:29:37 +0200 Subject: hevc_deblock: change tc type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The x86 asm expects int32_t so use that type. Reviewed-by: Mickaƫl Raulet Signed-off-by: Michael Niedermayer --- libavcodec/hevc_filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/hevc_filter.c') 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 }; -- cgit v1.2.3