Commit 96f57941 authored by diego's avatar diego

Rename parse_arg_file function to opt_input_file for consistency.

patch by Stefano Sabatini, stefano.sabatini-lala poste it


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10116 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 048c7061
...@@ -2515,7 +2515,7 @@ void show_help(void) ...@@ -2515,7 +2515,7 @@ void show_help(void)
); );
} }
void parse_arg_file(const char *filename) void opt_input_file(const char *filename)
{ {
if (!strcmp(filename, "-")) if (!strcmp(filename, "-"))
filename = "pipe:"; filename = "pipe:";
...@@ -2530,7 +2530,7 @@ int main(int argc, char **argv) ...@@ -2530,7 +2530,7 @@ int main(int argc, char **argv)
/* register all codecs, demux and protocols */ /* register all codecs, demux and protocols */
av_register_all(); av_register_all();
parse_options(argc, argv, options, parse_arg_file); parse_options(argc, argv, options, opt_input_file);
if (!input_filename) { if (!input_filename) {
show_help(); show_help();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment