Skip to content
Snippets Groups Projects
Commit f5da5c93 authored by Stefano Sabatini's avatar Stefano Sabatini Committed by Diego Biurrun
Browse files

Rename parse_arg_file function to opt_input_file for consistency.

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

Originally committed as revision 10116 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9fcfc0b7
No related branches found
No related tags found
No related merge requests found
...@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment