Lines Matching refs:max_count
208 MPP_RET rc_api_get_all(MppRcApiSrv *srv, RcApiBrief *brief, RK_S32 *count, RK_S32 max_count) in rc_api_get_all() argument
216 if (cnt >= max_count) in rc_api_get_all()
229 RK_S32 max_count, MppCodingType type) in rc_api_get_by_type() argument
237 if (cnt >= max_count) in rc_api_get_by_type()
257 RK_S32 max_count; in rc_brief_get_all() local
269 max_count = query->max_count; in rc_brief_get_all()
271 if (!brief || max_count <= 0) { in rc_brief_get_all()
272 mpp_err_f("invalide brief buffer %p max count %d\n", brief, max_count); in rc_brief_get_all()
276 return rc_api_get_all(srv, brief, count, max_count); in rc_brief_get_all()
284 RK_S32 max_count; in rc_brief_get_by_type() local
297 max_count = query->max_count; in rc_brief_get_by_type()
300 if (!brief || max_count <= 0) { in rc_brief_get_by_type()
302 brief, max_count, type); in rc_brief_get_by_type()
306 return rc_api_get_by_type(srv, brief, count, max_count, type); in rc_brief_get_by_type()