Home
last modified time | relevance | path

Searched refs:frame_target (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.h278 int frame_target,
Dvp9_ratectrl.c1684 void vp9_rc_compute_frame_size_bounds(const VP9_COMP *cpi, int frame_target, in vp9_rc_compute_frame_size_bounds() argument
1694 (int)(((int64_t)cpi->sf.recode_tolerance_low * frame_target) / 100); in vp9_rc_compute_frame_size_bounds()
1696 (int)(((int64_t)cpi->sf.recode_tolerance_high * frame_target) / 100); in vp9_rc_compute_frame_size_bounds()
1697 *frame_under_shoot_limit = VPXMAX(frame_target - tol_low - 100, 0); in vp9_rc_compute_frame_size_bounds()
1699 VPXMIN(frame_target + tol_high + 100, cpi->rc.max_frame_bandwidth); in vp9_rc_compute_frame_size_bounds()
/external/python/cpython3/Lib/idlelib/
Dconfigdialog.py1454 frame_target = Frame(frame_custom)
1455 target_title = Label(frame_target, text='Action - Key(s)')
1456 scroll_target_y = Scrollbar(frame_target)
1457 scroll_target_x = Scrollbar(frame_target, orient=HORIZONTAL)
1459 frame_target, takefocus=FALSE, exportselection=FALSE)
1496 frame_target.pack(side=LEFT, padx=5, pady=5, expand=TRUE, fill=BOTH)
1498 frame_target.columnconfigure(0, weight=1)
1499 frame_target.rowconfigure(1, weight=1)
/external/libaom/libaom/av1/encoder/
Dratectrl.c1503 void av1_rc_compute_frame_size_bounds(const AV1_COMP *cpi, int frame_target, in av1_rc_compute_frame_size_bounds() argument
1513 AOMMAX(100, (cpi->sf.hl_sf.recode_tolerance * frame_target) / 100); in av1_rc_compute_frame_size_bounds()
1514 *frame_under_shoot_limit = AOMMAX(frame_target - tolerance, 0); in av1_rc_compute_frame_size_bounds()
1516 AOMMIN(frame_target + tolerance, cpi->rc.max_frame_bandwidth); in av1_rc_compute_frame_size_bounds()