1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +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) void parse_arg_file(const char *filename)
{ {
if (!strcmp(filename, "-"))
filename = "pipe:";
input_filename = filename; input_filename = filename;
} }