diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-28 14:34:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-28 14:34:47 +0200 |
commit | 243236a6f589fbf898e3015c15008776522c925a (patch) | |
tree | def453d103133a6bb1e00450e74a843893dcfcff | |
parent | 772dfd5f6e5d0722b9c577929c7de41d851cf87d (diff) | |
download | ffmpeg-243236a6f589fbf898e3015c15008776522c925a.tar.gz |
avcodec/hevc: fix "discards const qualifier from pointer target type" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/hevc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index 592d897e3b..06f73e736a 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -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; |