Lines Matching defs:file
4 * This file is part of FFmpeg.
79 const char *file)
85 if ((err = avio_open2(&f, file, AVIO_FLAG_READ, NULL, NULL)) < 0)
117 static int handle_file(struct Tracks *tracks, const char *file)
124 err = avformat_open_input(&ctx, file, NULL, NULL);
127 fprintf(stderr, "Unable to open %s: %s\n", file, errbuf);
134 fprintf(stderr, "Unable to identify %s: %s\n", file, errbuf);
139 fprintf(stderr, "No streams found in %s\n", file);
151 st->id, file);
170 track->name = file;
171 if ((ptr = strrchr(file, '/')))
184 track->track_id, file);
208 err = find_sidx(tracks, orig_tracks, file);