• Home
  • Raw
  • Download

Lines Matching refs:num_entry_point_offsets

885     sh->num_entry_point_offsets = 0;  in hls_slice_header()
887 unsigned num_entry_point_offsets = get_ue_golomb_long(gb); in hls_slice_header() local
889 if (num_entry_point_offsets > get_bits_left(gb)) { in hls_slice_header()
890 …av_log(s->avctx, AV_LOG_ERROR, "num_entry_point_offsets %d is invalid\n", num_entry_point_offsets); in hls_slice_header()
894 sh->num_entry_point_offsets = num_entry_point_offsets; in hls_slice_header()
895 if (sh->num_entry_point_offsets > 0) { in hls_slice_header()
899 sh->num_entry_point_offsets = 0; in hls_slice_header()
907 sh->entry_point_offset = av_malloc_array(sh->num_entry_point_offsets, sizeof(unsigned)); in hls_slice_header()
908 sh->offset = av_malloc_array(sh->num_entry_point_offsets, sizeof(int)); in hls_slice_header()
909 sh->size = av_malloc_array(sh->num_entry_point_offsets, sizeof(int)); in hls_slice_header()
911 sh->num_entry_point_offsets = 0; in hls_slice_header()
915 for (i = 0; i < sh->num_entry_point_offsets; i++) { in hls_slice_header()
2578 …f (!more_data && (x_ctb+ctb_size) < s->ps.sps->width && ctb_row != s->sh.num_entry_point_offsets) { in hls_decode_entry_wpp()
2611 int *ret = av_malloc_array(s->sh.num_entry_point_offsets + 1, sizeof(int)); in hls_slice_data_wpp()
2612 int *arg = av_malloc_array(s->sh.num_entry_point_offsets + 1, sizeof(int)); in hls_slice_data_wpp()
2623 …if (s->sh.slice_ctb_addr_rs + s->sh.num_entry_point_offsets * s->ps.sps->ctb_width >= s->ps.sps->c… in hls_slice_data_wpp()
2625 s->sh.slice_ctb_addr_rs, s->sh.num_entry_point_offsets, in hls_slice_data_wpp()
2632 ff_alloc_entries(s->avctx, s->sh.num_entry_point_offsets + 1); in hls_slice_data_wpp()
2658 for (i = 1; i < s->sh.num_entry_point_offsets; i++) { in hls_slice_data_wpp()
2671 if (s->sh.num_entry_point_offsets != 0) { in hls_slice_data_wpp()
2672 offset += s->sh.entry_point_offset[s->sh.num_entry_point_offsets - 1] - cmpt; in hls_slice_data_wpp()
2678 s->sh.size[s->sh.num_entry_point_offsets - 1] = length - offset; in hls_slice_data_wpp()
2679 s->sh.offset[s->sh.num_entry_point_offsets - 1] = offset; in hls_slice_data_wpp()
2694 for (i = 0; i <= s->sh.num_entry_point_offsets; i++) { in hls_slice_data_wpp()
2700 … s->avctx->execute2(s->avctx, hls_decode_entry_wpp, arg, ret, s->sh.num_entry_point_offsets + 1); in hls_slice_data_wpp()
2702 for (i = 0; i <= s->sh.num_entry_point_offsets; i++) in hls_slice_data_wpp()
3109 if (s->threads_number > 1 && s->sh.num_entry_point_offsets > 0) in decode_nal_unit()