Lines Matching refs:file_idx
271 static int parse_and_set_vsync(const char *arg, int *vsync_var, int file_idx, int st_idx, int is_global)
279 av_log(NULL, AV_LOG_FATAL, "Invalid value %s specified for fps_mode of #%d:%d.\n", arg, file_idx, st_idx);
412 int i, negative = 0, file_idx, disabled = 0;
468 file_idx = strtol(map, &p, 0);
469 if (file_idx >= nb_input_files || file_idx < 0) {
470 av_log(NULL, AV_LOG_FATAL, "Invalid input file index: %d.\n", file_idx);
477 if (file_idx == m->file_index &&
484 for (i = 0; i < input_files[file_idx]->nb_streams; i++) {
485 if (check_stream_specifier(input_files[file_idx]->ctx, input_files[file_idx]->ctx->streams[i],
488 if (input_streams[input_files[file_idx]->ist_index + i]->user_set_discard == AVDISCARD_ALL) {
495 m->file_index = file_idx;
502 m->sync_file_index = file_idx;
552 m->file_idx = m->stream_idx = -1;
561 &m->file_idx, &m->stream_idx, &m->channel_idx,
574 if (m->file_idx < 0 || m->file_idx >= nb_input_files) {
576 m->file_idx);
580 m->stream_idx >= input_files[m->file_idx]->nb_streams) {
582 m->file_idx, m->stream_idx);
585 st = input_files[m->file_idx]->ctx->streams[m->stream_idx];
588 m->file_idx, m->stream_idx);
595 input_streams[input_files[m->file_idx]->ist_index + m->stream_idx]->user_set_discard == AVDISCARD_ALL) {
598 m->file_idx, m->stream_idx, m->channel_idx);
602 m->file_idx, m->stream_idx, m->channel_idx);
2118 if (!ist || (ist->file_index == map->file_idx && ist->st->index == map->stream_idx)) {