Commit 544380aa authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/4xm: Make src of decode_p_block() const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3a7f9db1
......@@ -339,7 +339,7 @@ static inline void mcdc(uint16_t *dst, const uint16_t *src, int log2w,
}
}
static int decode_p_block(FourXContext *f, uint16_t *dst, uint16_t *src,
static int decode_p_block(FourXContext *f, uint16_t *dst, const uint16_t *src,
int log2w, int log2h, int stride)
{
const int index = size2index[log2h][log2w];
......
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