Commit e1f4397e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '458e7c94'

* commit '458e7c94':
  hevc: implement pic_output_flag handling

Conflicts:
	libavcodec/hevc.c
	libavcodec/hevc_refs.c

See: 2eddf3a6Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents aa56c37c 458e7c94
...@@ -461,6 +461,7 @@ static int hls_slice_header(HEVCContext *s) ...@@ -461,6 +461,7 @@ static int hls_slice_header(HEVCContext *s)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
// when flag is not present, picture is inferred to be output
sh->pic_output_flag = 1; sh->pic_output_flag = 1;
if (s->pps->output_flag_present_flag) if (s->pps->output_flag_present_flag)
sh->pic_output_flag = get_bits1(gb); sh->pic_output_flag = get_bits1(gb);
......
...@@ -144,10 +144,12 @@ int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc) ...@@ -144,10 +144,12 @@ int ff_hevc_set_new_ref(HEVCContext *s, AVFrame **frame, int poc)
*frame = ref->frame; *frame = ref->frame;
s->ref = ref; s->ref = ref;
if (s->sh.pic_output_flag)
ref->flags = HEVC_FRAME_FLAG_OUTPUT | HEVC_FRAME_FLAG_SHORT_REF;
else
ref->flags = HEVC_FRAME_FLAG_SHORT_REF;
ref->poc = poc; ref->poc = poc;
ref->flags = HEVC_FRAME_FLAG_OUTPUT | HEVC_FRAME_FLAG_SHORT_REF;
if (s->sh.pic_output_flag == 0)
ref->flags &= ~(HEVC_FRAME_FLAG_OUTPUT);
ref->sequence = s->seq_decode; ref->sequence = s->seq_decode;
ref->window = s->sps->output_window; ref->window = s->sps->output_window;
......
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