[FFmpeg-cvslog] r10116 - trunk/ffplay.c

diego subversion
Tue Aug 14 15:58:28 CEST 2007


Author: diego
Date: Tue Aug 14 15:58:28 2007
New Revision: 10116

Log:
Rename parse_arg_file function to opt_input_file for consistency.
patch by Stefano Sabatini, stefano.sabatini-lala poste it


Modified:
   trunk/ffplay.c

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	(original)
+++ trunk/ffplay.c	Tue Aug 14 15:58:28 2007
@@ -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, "-"))
         filename = "pipe:";
@@ -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_arg_file);
+    parse_options(argc, argv, options, opt_input_file);
 
     if (!input_filename) {
         show_help();




More information about the ffmpeg-cvslog mailing list