Lines Matching defs:map

415     char *map;
422 map = av_strdup(arg);
423 if (!map)
427 if (sync = strchr(map, ',')) {
443 av_log(NULL, AV_LOG_FATAL, "Sync stream specification in map %s does not "
448 av_log(NULL, AV_LOG_FATAL, "Sync stream specification in map %s matches a disabled input "
455 if (map[0] == '[') {
457 const char *c = map + 1;
462 av_log(NULL, AV_LOG_ERROR, "Invalid output link label: %s.\n", map);
466 if (allow_unused = strchr(map, '?'))
468 file_idx = strtol(map, &p, 0);
510 av_log(NULL, AV_LOG_VERBOSE, "Stream map '%s' matches no streams; ignoring.\n", arg);
512 av_log(NULL, AV_LOG_FATAL, "Stream map '%s' matches disabled streams.\n"
513 "To ignore this, add a trailing '?' to the map.\n", arg);
516 av_log(NULL, AV_LOG_FATAL, "Stream map '%s' matches no streams.\n"
517 "To ignore this, add a trailing '?' to the map.\n", arg);
522 av_freep(&map);
2103 AudioChannelMap *map = &o->audio_channel_maps[n];
2104 if ((map->ofile_idx == -1 || ost->file_index == map->ofile_idx) &&
2105 (map->ostream_idx == -1 || ost->st->index == map->ostream_idx)) {
2108 if (map->channel_idx == -1) {
2118 if (!ist || (ist->file_index == map->file_idx && ist->st->index == map->stream_idx)) {
2125 ost->audio_channels_map[ost->audio_channels_mapped++] = map->channel_idx;
2608 StreamMap *map = &o->stream_maps[i];
2610 if (map->disabled)
2613 if (map->linklabel) {
2622 if (out && !strcmp(out->name, map->linklabel)) {
2631 "in any defined filter graph, or was already used elsewhere.\n", map->linklabel);
2636 int src_idx = input_files[map->file_index]->ist_index + map->stream_index;
2638 ist = input_streams[input_files[map->file_index]->ist_index + map->stream_index];
2641 map->file_index, map->stream_index);
2667 "Cannot map stream #%d:%d - unsupported type.\n",
2668 map->file_index, map->stream_index);
2678 ost->sync_ist = input_streams[ input_files[map->sync_file_index]->ist_index
2679 + map->sync_stream_index];
3672 { "map", HAS_ARG | OPT_EXPERT | OPT_PERFILE |
3677 "map an audio channel from one stream to another", "file.stream.channel[:syncfile.syncstream]" },