Commit 243236a6 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/hevc: fix "discards const qualifier from pointer target type" warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 772dfd5f
......@@ -276,7 +276,7 @@ static int decode_lt_rps(HEVCContext *s, LongTermRPS *rps, GetBitContext *gb)
return 0;
}
static int get_buffer_sao(HEVCContext *s, AVFrame *frame, HEVCSPS *sps)
static int get_buffer_sao(HEVCContext *s, AVFrame *frame, const HEVCSPS *sps)
{
int ret, i;
......
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