summaryrefslogtreecommitdiff
path: root/libavcodec/hevc_filter.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-09-01 22:18:22 +0200
committerDiego Biurrun <diego@biurrun.de>2016-09-29 17:54:23 +0200
commitba479f3daafc7e4359ec1212164569ebe59f0bb7 (patch)
tree872f7656fad3dd5e271b87642862f3baf59c2852 /libavcodec/hevc_filter.c
parente4a94d8b36c48d95a7d412c40d7b558422ff659c (diff)
downloadffmpeg-ba479f3daafc7e4359ec1212164569ebe59f0bb7.tar.gz
hevc: Change type of array stride parameters to ptrdiff_t
ptrdiff_t is the correct type for array strides and similar.
Diffstat (limited to 'libavcodec/hevc_filter.c')
-rw-r--r--libavcodec/hevc_filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevc_filter.c b/libavcodec/hevc_filter.c
index 39ac4eef8e..5037dae7cd 100644
--- a/libavcodec/hevc_filter.c
+++ b/libavcodec/hevc_filter.c
@@ -172,7 +172,7 @@ static int get_qPy(HEVCContext *s, int xC, int yC)
}
static void copy_CTB(uint8_t *dst, uint8_t *src,
- int width, int height, int stride)
+ int width, int height, ptrdiff_t stride)
{
int i;
@@ -273,7 +273,7 @@ static void sao_filter_CTB(HEVCContext *s, int x, int y)
int chroma = c_idx ? 1 : 0;
int x0 = x >> chroma;
int y0 = y >> chroma;
- int stride = s->frame->linesize[c_idx];
+ ptrdiff_t stride = s->frame->linesize[c_idx];
int ctb_size = (1 << (s->ps.sps->log2_ctb_size)) >> s->ps.sps->hshift[c_idx];
int width = FFMIN(ctb_size,
(s->ps.sps->width >> s->ps.sps->hshift[c_idx]) - x0);