Lines Matching refs:openhevc_sh

534 static RK_S32 compare_sliceheader(SliceHeader *openhevc_sh, SliceHeader *sh)  in compare_sliceheader()  argument
537 if (openhevc_sh->pps_id != sh->pps_id) { in compare_sliceheader()
542 if (openhevc_sh->slice_type != sh->slice_type) { in compare_sliceheader()
547 if (openhevc_sh->pic_order_cnt_lsb != sh->pic_order_cnt_lsb) { in compare_sliceheader()
552 if (openhevc_sh->first_slice_in_pic_flag != sh->first_slice_in_pic_flag) { in compare_sliceheader()
557 if (openhevc_sh->dependent_slice_segment_flag != sh->dependent_slice_segment_flag) { in compare_sliceheader()
562 if (openhevc_sh->pic_output_flag != sh->pic_output_flag) { in compare_sliceheader()
567 if (openhevc_sh->colour_plane_id != sh->colour_plane_id) { in compare_sliceheader()
572 if (openhevc_sh->rpl_modification_flag[0] != sh->rpl_modification_flag[0]) { in compare_sliceheader()
577 if (openhevc_sh->rpl_modification_flag[1] != sh->rpl_modification_flag[1]) { in compare_sliceheader()
582 if (openhevc_sh->no_output_of_prior_pics_flag != sh->no_output_of_prior_pics_flag) { in compare_sliceheader()
587 if (openhevc_sh->slice_temporal_mvp_enabled_flag != sh->slice_temporal_mvp_enabled_flag) { in compare_sliceheader()
592 if (openhevc_sh->nb_refs[0] != sh->nb_refs[0]) { in compare_sliceheader()
597 if (openhevc_sh->nb_refs[1] != sh->nb_refs[1]) { in compare_sliceheader()
602 if (openhevc_sh->slice_sample_adaptive_offset_flag[0] != in compare_sliceheader()
608 if (openhevc_sh->slice_sample_adaptive_offset_flag[1] != in compare_sliceheader()
614 if (openhevc_sh->slice_sample_adaptive_offset_flag[2] != in compare_sliceheader()
620 if (openhevc_sh->mvd_l1_zero_flag != sh->mvd_l1_zero_flag) { in compare_sliceheader()
624 if (openhevc_sh->cabac_init_flag != sh->cabac_init_flag) { in compare_sliceheader()
629 if (openhevc_sh->disable_deblocking_filter_flag != in compare_sliceheader()
635 if (openhevc_sh->slice_loop_filter_across_slices_enabled_flag != in compare_sliceheader()
641 if (openhevc_sh->collocated_list != sh->collocated_list) { in compare_sliceheader()
646 if (openhevc_sh->collocated_ref_idx != sh->collocated_ref_idx) { in compare_sliceheader()
651 if (openhevc_sh->slice_qp_delta != sh->slice_qp_delta) { in compare_sliceheader()
656 if (openhevc_sh->slice_cb_qp_offset != sh->slice_cb_qp_offset) { in compare_sliceheader()
661 if (openhevc_sh->slice_cr_qp_offset != sh->slice_cr_qp_offset) { in compare_sliceheader()
666 if (openhevc_sh->beta_offset != sh->beta_offset) { in compare_sliceheader()
671 if (openhevc_sh->tc_offset != sh->tc_offset) { in compare_sliceheader()
676 if (openhevc_sh->max_num_merge_cand != sh->max_num_merge_cand) { in compare_sliceheader()
681 if (openhevc_sh->num_entry_point_offsets != sh->num_entry_point_offsets) { in compare_sliceheader()
686 if (openhevc_sh->slice_qp != sh->slice_qp) { in compare_sliceheader()
691 if (openhevc_sh->luma_log2_weight_denom != sh->luma_log2_weight_denom) { in compare_sliceheader()
696 if (openhevc_sh->chroma_log2_weight_denom != sh->chroma_log2_weight_denom) { in compare_sliceheader()
1106 SliceHeader *openhevc_sh = (SliceHeader *)&info->sh; in hls_slice_header() local
1108 if (compare_sliceheader(openhevc_sh, &s->sh) < 0) { in hls_slice_header()