mirror of https://git.ffmpeg.org/ffmpeg.git
FFprobe: take only one input file.
Originally committed as revision 22014 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9127a369ad
commit
c8c0ac6b26
|
@ -290,6 +290,10 @@ static void opt_format(const char *arg)
|
|||
|
||||
static void opt_input_file(const char *filename)
|
||||
{
|
||||
if (input_filename) {
|
||||
fprintf(stderr, "Input filename already specified: %s\n", filename);
|
||||
exit(1);
|
||||
}
|
||||
if (!strcmp(filename, "-"))
|
||||
filename = "pipe:";
|
||||
input_filename = filename;
|
||||
|
|
Loading…
Reference in New Issue