Lines Matching defs:start_time

231     o->start_time     = AV_NOPTS_VALUE;
319 } else if (self->ctx->start_time != AV_NOPTS_VALUE && ref->ctx->start_time != AV_NOPTS_VALUE) {
320 self_start_time = self->ctx->start_time;
321 ref_start_time = ref->ctx->start_time;
327 self_seek_start = self->start_time == AV_NOPTS_VALUE ? 0 : self->start_time;
328 ref_seek_start = ref->start_time == AV_NOPTS_VALUE ? 0 : ref->start_time;
1172 int64_t start_time = o->start_time == AV_NOPTS_VALUE ? 0 : o->start_time;
1173 if (o->stop_time <= start_time) {
1177 o->recording_time = o->stop_time - start_time;
1304 if (o->start_time != AV_NOPTS_VALUE && o->start_time_eof != AV_NOPTS_VALUE) {
1315 o->start_time = o->start_time_eof + ic->duration;
1316 if (o->start_time < 0) {
1318 o->start_time = AV_NOPTS_VALUE;
1323 timestamp = (o->start_time == AV_NOPTS_VALUE) ? 0 : o->start_time;
1325 if (!o->seek_timestamp && ic->start_time != AV_NOPTS_VALUE)
1326 timestamp += ic->start_time;
1329 if (o->start_time != AV_NOPTS_VALUE) {
1362 f->start_time = o->start_time;
1366 f->ts_offset = o->input_ts_offset - (copy_ts ? (start_at_zero && ic->start_time != AV_NOPTS_VALUE ? ic->start_time : 0) : timestamp);
2233 int64_t start_time = (ofile->start_time == AV_NOPTS_VALUE) ? 0 : ofile->start_time;
2234 int64_t ts_off = av_rescale_q(start_time - ifile->ts_offset,
2434 int64_t start_time = o->start_time == AV_NOPTS_VALUE ? 0 : o->start_time;
2435 if (o->stop_time <= start_time) {
2439 o->recording_time = o->stop_time - start_time;
2448 of->start_time = o->start_time;
3694 OPT_INPUT | OPT_OUTPUT, { .off = OFFSET(start_time) },