Searched refs:drop_mark (Results 1 – 3 of 3) sorted by relevance
439 static int check_buffer_above_thresh(VP9_COMP *cpi, int drop_mark) { in check_buffer_above_thresh() argument443 return (rc->buffer_level > drop_mark); in check_buffer_above_thresh()466 static int check_buffer_below_thresh(VP9_COMP *cpi, int drop_mark) { in check_buffer_below_thresh() argument470 return (rc->buffer_level <= drop_mark); in check_buffer_below_thresh()529 int drop_mark = in drop_frame() local531 if (check_buffer_above_thresh(cpi, drop_mark) && in drop_frame()534 } else if (check_buffer_below_thresh(cpi, drop_mark) && in drop_frame()
327 int drop_mark = in av1_rc_drop_frame() local329 if ((rc->buffer_level > drop_mark) && (rc->decimation_factor > 0)) { in av1_rc_drop_frame()331 } else if (rc->buffer_level <= drop_mark && rc->decimation_factor == 0) { in av1_rc_drop_frame()
3228 int drop_mark = (int)(cpi->oxcf.drop_frames_water_mark * in encode_frame_to_data_rate() local3230 int drop_mark75 = drop_mark * 2 / 3; in encode_frame_to_data_rate()3231 int drop_mark50 = drop_mark / 4; in encode_frame_to_data_rate()3232 int drop_mark25 = drop_mark / 8; in encode_frame_to_data_rate()3451 if ((cpi->buffer_level > drop_mark) && (cpi->decimation_factor > 0)) { in encode_frame_to_data_rate()