From 60a9966e4d96ca26ceabdaf99eacfb0872c4e931 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 13 Aug 2007 23:03:36 +0000 Subject: Make cmdutils.c:parse_options accept as argument a function to parse bare command line parameters. patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10112 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index 33c49fafd2..6c8751a8f7 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3806,11 +3806,6 @@ static void show_help(void) av_opt_show(sws_opts, NULL); } -void parse_arg_file(const char *filename) -{ - opt_output_file(filename); -} - int main(int argc, char **argv) { int i; @@ -3831,7 +3826,7 @@ int main(int argc, char **argv) } /* parse options */ - parse_options(argc, argv, options); + parse_options(argc, argv, options, opt_output_file); /* file converter / grab */ if (nb_output_files <= 0) { -- cgit v1.2.3