Searched refs:min_delay (Results 1 - 6 of 6) sorted by relevance
/third_party/ltp/testcases/realtime/func/sched_latency/ |
H A D | sched_latency.c | 120 nsec_t delay, avg_delay = 0, start_delay, min_delay = -1ULL, max_delay = in periodic_thread() local 184 if (delay < min_delay) in periodic_thread() 185 min_delay = delay; in periodic_thread() 226 printf("Min: %4llu us: %s\n", min_delay, in periodic_thread() 227 min_delay < pass_criteria ? "PASS" : "FAIL"); in periodic_thread()
|
/third_party/ffmpeg/libavformat/ |
H A D | gifdec.c | 46 int min_delay; member 161 if (delay < gdc->min_delay) in gif_read_header() 227 if (gdc->delay < gdc->min_delay) in gif_read_ext() 386 { "min_delay" , "minimum valid delay between frames (in hundredths of second)", offsetof(GIFDemuxContext, min_delay) , AV_OPT_TYPE_INT, {.i64 = GIF_MIN_DELAY} , 0, 100 * 60, AV_OPT_FLAG_DECODING_PARAM },
|
/third_party/ffmpeg/libavfilter/ |
H A D | afir_template.c | 50 ftype min_delay = FLT_MAX, max_delay = FLT_MIN; in draw_response() local 82 min_delay = fminf(min_delay, delay[i]); in draw_response() 88 int ydelay = (delay[i] - min_delay) / (max_delay - min_delay) * (s->h - 1); in draw_response() 125 snprintf(text, sizeof(text), "%.2f", min_delay); in draw_response()
|
H A D | af_aiir.c | 1146 double min_delay = DBL_MAX, max_delay = -DBL_MAX, min_phase, max_phase; in draw_response() local 1196 min_delay = fmin(min_delay, delay[i + 1]); in draw_response() 1203 int ydelay = (delay[i] - min_delay) / (max_delay - min_delay) * (s->h - 1); in draw_response() 1248 snprintf(text, sizeof(text), "%.2f", min_delay); in draw_response()
|
/third_party/libbpf/include/uapi/linux/ |
H A D | pkt_sched.h | 624 __s64 min_delay; /* nsec */ member
|
/third_party/ffmpeg/libavcodec/ |
H A D | mpegvideo_enc.c | 1833 int vbv_delay, min_delay; in ff_mpv_encode_picture() local 1848 min_delay = (minbits * 90000LL + avctx->rc_max_rate - 1) / in ff_mpv_encode_picture() 1851 vbv_delay = FFMAX(vbv_delay, min_delay); in ff_mpv_encode_picture()
|
Completed in 14 milliseconds