Commit 800fbc98 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/magicyuvenc: use const for src pointer

parent 4d1b7ff7
......@@ -413,7 +413,7 @@ static int encode_table(AVCodecContext *avctx,
return 0;
}
static int encode_plane_slice(uint8_t *src, uint8_t *dst, int dst_size,
static int encode_plane_slice(const uint8_t *src, uint8_t *dst, int dst_size,
int width, int height, HuffEntry *he, int prediction)
{
PutBitContext pb;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment