Home
last modified time | relevance | path

Searched refs:INT_MAX (Results 1 – 18 of 18) sorted by relevance

/rockchip-linux_mpp/mpp/codec/enc/vp8/
H A Dvp8e_api_v2.c103 rc_cfg->fqp_min_i = INT_MAX; in vp8e_init()
104 rc_cfg->fqp_min_p = INT_MAX; in vp8e_init()
105 rc_cfg->fqp_max_i = INT_MAX; in vp8e_init()
106 rc_cfg->fqp_max_p = INT_MAX; in vp8e_init()
/rockchip-linux_mpp/mpp/codec/enc/h265/
H A Dh265e_api.c177 rc_cfg->fqp_min_i = INT_MAX; in h265e_init()
178 rc_cfg->fqp_min_p = INT_MAX; in h265e_init()
179 rc_cfg->fqp_max_i = INT_MAX; in h265e_init()
180 rc_cfg->fqp_max_p = INT_MAX; in h265e_init()
/rockchip-linux_mpp/mpp/codec/enc/h264/
H A Dh264e_api_v2.c192 rc_cfg->fqp_min_i = INT_MAX; in init_h264e_cfg_set()
193 rc_cfg->fqp_min_p = INT_MAX; in init_h264e_cfg_set()
194 rc_cfg->fqp_max_i = INT_MAX; in init_h264e_cfg_set()
195 rc_cfg->fqp_max_p = INT_MAX; in init_h264e_cfg_set()
/rockchip-linux_mpp/mpp/codec/dec/avs2/
H A Davs2d_dpb.c30 #ifndef INT_MAX
31 #define INT_MAX 2147483647 /* maximum (signed) int value */ macro
183 if (ph->doi < (INT_MAX - 2 * AVS2_DOI_CYCLE)) { in recompute_cycle_order_index()
268 RK_S32 min_poi = INT_MAX; in get_outputable_smallest_poi()
272 *poi = INT_MAX; in get_outputable_smallest_poi()
/rockchip-linux_mpp/mpp/codec/dec/h265/
H A Dh265d_parser.c727 s->max_ra = INT_MAX; in hls_slice_header()
736 s->max_ra = INT_MAX; in hls_slice_header()
770 s->max_ra = INT_MAX; in hls_slice_header()
1187 RK_S32 min_poc = INT_MAX; in mpp_hevc_output_frame()
1465 if (s->max_ra == INT_MAX) { in parser_nal_unit()
1523 s->max_ra = INT_MAX; in parser_nal_unit()
2172 s->DPB[i].poc = INT_MAX; in hevc_init_context()
2179 s->max_ra = INT_MAX; in hevc_init_context()
2307 s->max_ra = INT_MAX; in h265d_reset()
2333 s->max_ra = INT_MAX; in h265d_callback()
H A Dh265d_refs.c52 frame->poc = INT_MAX; in mpp_hevc_unref_frame()
H A Dh265d_sei.c448 if (gb->bytes_left_ < 2 || payload_type > INT_MAX - 255) { in mpp_hevc_decode_nal_sei()
/rockchip-linux_mpp/mpp/codec/dec/h264/
H A Dh264d_sei.c253 if (p_bitctx->bytes_left_ < 2 || sei_msg->type > INT_MAX - 255) { in process_sei()
H A Dh264d_dpb.c33 #ifndef INT_MAX
34 #define INT_MAX 2147483647 /* maximum (signed) int value */ macro
736 RK_S32 min_poc = INT_MAX; in get_smallest_poc()
739 *poc = INT_MAX; in get_smallest_poc()
/rockchip-linux_mpp/mpp/codec/dec/av1/
H A Dav1d_cbs.c32 #ifndef INT_MAX
33 #define INT_MAX 2147483647 /* maximum (signed) int value */ macro
2698 if (INT_MAX / 8 < size) { in mpp_av1_split_fragment()
/rockchip-linux_mpp/mpp/codec/
H A Dmpp_enc_impl.c1610 cfg->fqp_min_p = rc->fqp_min_p == INT_MAX ? cfg->min_quality : rc->fqp_min_p; in set_rc_cfg()
1611 cfg->fqp_min_i = rc->fqp_min_i == INT_MAX ? cfg->min_i_quality : rc->fqp_min_i; in set_rc_cfg()
1612 cfg->fqp_max_p = rc->fqp_max_p == INT_MAX ? cfg->max_quality : rc->fqp_max_p; in set_rc_cfg()
1613 cfg->fqp_max_i = rc->fqp_max_i == INT_MAX ? cfg->max_i_quality : rc->fqp_max_i; in set_rc_cfg()
/rockchip-linux_mpp/utils/
H A Dutils.c287 #if LONG_MAX == INT_MAX in wide_bit_sum()
/rockchip-linux_mpp/mpp/hal/rkdec/h265d/
H A Dhal_h265d_vdpu382.c662 RK_S32 distance = INT_MAX; in hal_h265d_vdpu382_gen_regs()
H A Dhal_h265d_vdpu384a.c792 RK_S32 distance = INT_MAX; in hal_h265d_vdpu384a_gen_regs()
H A Dhal_h265d_vdpu34x.c853 RK_S32 distance = INT_MAX; in hal_h265d_vdpu34x_gen_regs()
H A Dhal_h265d_vdpu383.c871 RK_S32 distance = INT_MAX; in hal_h265d_vdpu383_gen_regs()
/rockchip-linux_mpp/
H A DCHANGELOG.md492 - [hal_h265d]: use INT_MAX for poc distance initiation
/rockchip-linux_mpp/mpp/base/
H A Dmpp_cfg_io.c1211 if (value >= INT_MIN && value <= INT_MAX) { in parse_number()