avcodec/hevcdec: make ff_hevc_frame_nb_refs take a const pointer

(cherry picked from commit 46c1ee19171c4704ad7dec65b1c716a727238486)
This commit is contained in:
Timo Rothenpieler 2018-05-10 12:22:34 +02:00
parent 8fde71acd9
commit 61b673b1f1
2 changed files with 3 additions and 3 deletions

View File

@ -511,12 +511,12 @@ fail:
return ret;
}
int ff_hevc_frame_nb_refs(HEVCContext *s)
int ff_hevc_frame_nb_refs(const HEVCContext *s)
{
int ret = 0;
int i;
const ShortTermRPS *rps = s->sh.short_term_rps;
LongTermRPS *long_rps = &s->sh.long_term_rps;
const LongTermRPS *long_rps = &s->sh.long_term_rps;
if (rps) {
for (i = 0; i < rps->num_negative_pics; i++)

View File

@ -544,7 +544,7 @@ int ff_hevc_res_scale_sign_flag(HEVCContext *s, int idx);
/**
* Get the number of candidate references for the current frame.
*/
int ff_hevc_frame_nb_refs(HEVCContext *s);
int ff_hevc_frame_nb_refs(const HEVCContext *s);
int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc);