aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-28 15:55:18 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-02 20:27:36 +0200
commit73f104201b2c4c63f71c65bd11880c87bcb17a8a (patch)
treef67cdfa2ceb32b264ddac044a3cde2fdf2ac93d3
parentb7848d1b2abfbd22b29fa88522e550d4f68cfc49 (diff)
downloadffmpeg-73f104201b2c4c63f71c65bd11880c87bcb17a8a.tar.gz
avcodec/rl2: Use ptrdiff_t for stride
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/rl2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rl2.c b/libavcodec/rl2.c
index 467c4913a4..76982f0426 100644
--- a/libavcodec/rl2.c
+++ b/libavcodec/rl2.c
@@ -57,11 +57,11 @@ typedef struct Rl2Context {
* @param video_base offset of the rle data inside the frame
*/
static void rl2_rle_decode(Rl2Context *s, const uint8_t *in, int size,
- uint8_t *out, int stride, int video_base)
+ uint8_t *out, ptrdiff_t stride, int video_base)
{
int base_x = video_base % s->avctx->width;
int base_y = video_base / s->avctx->width;
- int stride_adj = stride - s->avctx->width;
+ ptrdiff_t stride_adj = stride - s->avctx->width;
int i;
const uint8_t *back_frame = s->back_frame;
const uint8_t *in_end = in + size;