mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
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:
parent
c38370dc5d
commit
9026f446d6
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user