lavc/hevcdec: Initialize missed parameters in slice header for IDR frame

Signed-off-by: Fei Wang <fei.w.wang@intel.com>
This commit is contained in:
Fei Wang 2023-03-27 13:26:27 +08:00 committed by J. Dekker
parent c38370dc5d
commit 9026f446d6
1 changed files with 7 additions and 2 deletions

View File

@ -732,8 +732,13 @@ static int hls_slice_header(HEVCContext *s)
else
sh->slice_temporal_mvp_enabled_flag = 0;
} else {
s->sh.short_term_rps = NULL;
s->poc = 0;
s->poc = 0;
sh->pic_order_cnt_lsb = 0;
sh->short_term_ref_pic_set_sps_flag = 0;
sh->short_term_ref_pic_set_size = 0;
sh->short_term_rps = NULL;
sh->long_term_ref_pic_set_size = 0;
sh->slice_temporal_mvp_enabled_flag = 0;
}
/* 8.3.1 */