Lines Matching defs:period
1286 int64_t period;
1291 with a 24-hours period. */
1292 period = s->events[s->nb_events - 1].ts - (uint64_t)s->events[0].ts;
1293 if (period < 0)
1296 period = (period + (DAY_TS - 1)) / DAY_TS * DAY_TS;
1297 period = FFMAX(period, DAY_TS);
1305 if (!ev1->fade.slide && ev1 >= ev2 && ev2->ts > INT64_MAX - period)
1309 : ev2->ts + (ev1 < ev2 ? 0 : period);
1318 ev1->ts_next = ev2->ts_int + (ev1 < ev2 ? 0 : period);
1323 if (av_sat_sub64(ev0.ts_int, period) != (uint64_t)ev0.ts_int - period)
1325 ev0.ts_int -= period;
1326 ev0.ts_trans -= period;
1327 ev0.ts_next -= period;