mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/hevc: fix "discards const qualifier from pointer target type" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
772dfd5f6e
commit
243236a6f5
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue