Lines Matching defs:in_ch
2232 AVChapter *in_ch = is->chapters[i], *out_ch;
2235 AV_TIME_BASE_Q, in_ch->time_base);
2237 av_rescale_q(ofile->recording_time, AV_TIME_BASE_Q, in_ch->time_base);
2240 if (in_ch->end < ts_off)
2242 if (rt != INT64_MAX && in_ch->start > rt + ts_off)
2249 out_ch->id = in_ch->id;
2250 out_ch->time_base = in_ch->time_base;
2251 out_ch->start = FFMAX(0, in_ch->start - ts_off);
2252 out_ch->end = FFMIN(rt, in_ch->end - ts_off);
2255 av_dict_copy(&out_ch->metadata, in_ch->metadata, 0);