• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/

Lines Matching defs:ifile

2460         InputFile *ifile = input_files[i];
2461 if (ifile->rate_emu)
2462 for (j = 0; j < ifile->nb_streams; j++)
2463 input_streams[j + ifile->ist_index]->start = av_gettime_relative();
2890 InputFile *ifile = input_files[i];
2891 for (j = 0; j < ifile->ctx->nb_programs; j++) {
2892 AVProgram *p = ifile->ctx->programs[j];
2896 if (!input_streams[ifile->ist_index + p->stream_index[k]]->discard) {
3303 InputFile *ifile = input_files[file_index];
3309 is = ifile->ctx;
3310 ret = get_input_packet(ifile, &pkt);
3313 ifile->eagain = 1;
3323 for (i = 0; i < ifile->nb_streams; i++) {
3324 ist = input_streams[ifile->ist_index + i];
3335 if (ost->source_index == ifile->ist_index + i &&
3341 ifile->eof_reached = 1;
3353 if (pkt.stream_index >= ifile->nb_streams) {
3358 ist = input_streams[ifile->ist_index + pkt.stream_index];
3369 ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->dec_ctx->codec_type),
3384 && ifile->ts_offset == -is->start_time
3395 ifile->ts_offset = -new_start_time;
3433 pkt.dts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3435 pkt.pts += av_rescale_q(ifile->ts_offset, AV_TIME_BASE_Q, ist->st->time_base);
3443 && (is->iformat->flags & AVFMT_TS_DISCONT) && ifile->last_ts != AV_NOPTS_VALUE) {
3445 int64_t delta = pkt_dts - ifile->last_ts;
3449 ifile->ts_offset -= delta;
3452 delta, ifile->ts_offset);
3468 ifile->ts_offset -= delta;
3471 delta, ifile->ts_offset);
3495 ifile->last_ts = av_rescale_q(pkt.dts, ist->st->time_base, AV_TIME_BASE_Q);
3499 ifile->ist_index + pkt.stream_index, av_get_media_type_string(ist->dec_ctx->codec_type),