Searched refs:pic_size (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | h265_profile_level.c | 170 int pic_size, tier_flag, lbr_flag, hbr_factor; in ff_h265_guess_level() local 182 pic_size = width * height; in ff_h265_guess_level() 209 if (pic_size > level->max_luma_ps) in ff_h265_guess_level() 232 if (pic_size <= (level->max_luma_ps >> 2)) in ff_h265_guess_level() 234 else if (pic_size <= (level->max_luma_ps >> 1)) in ff_h265_guess_level() 236 else if (pic_size <= (3 * level->max_luma_ps >> 2)) in ff_h265_guess_level()
|
D | cbs_h264_syntax_template.c | 431 unsigned int pic_size; in FUNC() local 434 pic_size = (sps->pic_width_in_mbs_minus1 + 1) * in FUNC() 441 ues(run_length_minus1[iGroup], 0, pic_size - 1, 1, iGroup); in FUNC() 445 ues(top_left[iGroup], 0, pic_size - 1, 1, iGroup); in FUNC() 447 current->top_left[iGroup], pic_size - 1, 1, iGroup); in FUNC() 453 ue(slice_group_change_rate_minus1, 0, pic_size - 1); in FUNC() 455 ue(pic_size_in_map_units_minus1, pic_size - 1, pic_size - 1); in FUNC() 1116 unsigned int pic_size, max, bits; in FUNC() local 1118 pic_size = (sps->pic_width_in_mbs_minus1 + 1) * in FUNC() 1120 max = (pic_size + pps->slice_group_change_rate_minus1) / in FUNC()
|
D | proresenc_anatoliy.c | 725 int compress_frame_size, pic_size, ret, is_top_field_first = 0; in prores_encode_frame() local 780 pic_size = prores_encode_picture(avctx, pict, buf, in prores_encode_frame() 782 if (pic_size < 0) { in prores_encode_frame() 783 return pic_size; in prores_encode_frame() 785 compress_frame_size += pic_size; in prores_encode_frame() 788 pic_size = prores_encode_picture(avctx, pict, pkt->data + compress_frame_size, in prores_encode_frame() 790 if (pic_size < 0) { in prores_encode_frame() 791 return pic_size; in prores_encode_frame() 793 compress_frame_size += pic_size; in prores_encode_frame()
|
D | proresdec2.c | 763 int frame_hdr_size, pic_size, ret; in decode_frame() local 786 pic_size = decode_picture_header(avctx, buf, buf_size); in decode_frame() 787 if (pic_size < 0) { in decode_frame() 789 return pic_size; in decode_frame() 801 buf += pic_size; in decode_frame() 802 buf_size -= pic_size; in decode_frame()
|