1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-28 16:02:17 +02:00

Small Patch for "ffplay -" instead of "ffplay pipe:" by (Bill Eldridge <bill at rfa dot org>)

Originally committed as revision 2181 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2003-08-29 20:22:16 +00:00
parent 12dccd4e60
commit e8d83e1c26

View File

@ -1660,6 +1660,8 @@ void show_help(void)
void parse_arg_file(const char *filename)
{
if (!strcmp(filename, "-"))
filename = "pipe:";
input_filename = filename;
}