diff options
author | Peter Ross <pross@xvid.org> | 2024-11-08 18:17:01 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2024-11-09 08:50:59 +1100 |
commit | 2bbbf36fe226e0de8d01fe9a2a2a04768b84d501 (patch) | |
tree | 7a90aa100c9535495807ec3fd5cfa74234caa39d | |
parent | 006718c4755cdb3e8543761b0e64f2489ac6bd1a (diff) | |
download | ffmpeg-2bbbf36fe226e0de8d01fe9a2a2a04768b84d501.tar.gz |
avcodec/rv60: set populate_ipred src parameter to const
-rw-r--r-- | libavcodec/rv60dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv60dec.c b/libavcodec/rv60dec.c index 96f121197a..091018cc56 100644 --- a/libavcodec/rv60dec.c +++ b/libavcodec/rv60dec.c @@ -485,7 +485,7 @@ static void ipred_init(IntraPredContext * i) i->has_t = i->has_tr = i->has_l = i->has_ld = 0; } -static void populate_ipred(const RV60Context * s, CUContext * cu, uint8_t * src, int stride, int xoff, int yoff, int size, int is_luma) +static void populate_ipred(const RV60Context * s, CUContext * cu, const uint8_t * src, int stride, int xoff, int yoff, int size, int is_luma) { if (is_luma) src += (cu->ypos + yoff) * stride + cu->xpos + xoff; |