diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2007-08-13 23:03:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-08-13 23:03:36 +0000 |
commit | 60a9966e4d96ca26ceabdaf99eacfb0872c4e931 (patch) | |
tree | 8f8337270ddeeb6f17b527ad9e1cbc8301f76b4a /ffplay.c | |
parent | 9c0edaaf1359b4eeb26870c74c3a00dfd026de67 (diff) | |
download | ffmpeg-60a9966e4d96ca26ceabdaf99eacfb0872c4e931.tar.gz |
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
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2530,7 +2530,7 @@ int main(int argc, char **argv) /* register all codecs, demux and protocols */ av_register_all(); - parse_options(argc, argv, options); + parse_options(argc, argv, options, parse_arg_file); if (!input_filename) { show_help(); |