[FFmpeg-cvslog] r13235 - in trunk: doc/ffplay-doc.texi ffplay.c

takis subversion
Thu May 22 11:49:18 CEST 2008


Author: takis
Date: Thu May 22 11:49:18 2008
New Revision: 13235

Log:
Implement ffplay -L.
Patch by: Stefano Sabatini, stefano.sabatini-lala poste it


Modified:
   trunk/doc/ffplay-doc.texi
   trunk/ffplay.c

Modified: trunk/doc/ffplay-doc.texi
==============================================================================
--- trunk/doc/ffplay-doc.texi	(original)
+++ trunk/doc/ffplay-doc.texi	Thu May 22 11:49:18 2008
@@ -33,6 +33,8 @@ ffplay [options] @file{input_file}
 show help
 @item -version
 show version
+ at item -L
+show license
 @item -x @var{width}
 force displayed width
 @item -y @var{height}

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	(original)
+++ trunk/ffplay.c	Thu May 22 11:49:18 2008
@@ -2435,6 +2435,7 @@ static int opt_thread_count(const char *
 static const OptionDef options[] = {
     { "h", OPT_EXIT, {(void*)show_help}, "show help" },
     { "version", OPT_EXIT, {(void*)show_version}, "show version" },
+    { "L", OPT_EXIT, {(void*)show_license}, "show license" },
     { "x", HAS_ARG | OPT_FUNC2, {(void*)opt_width}, "force displayed width", "width" },
     { "y", HAS_ARG | OPT_FUNC2, {(void*)opt_height}, "force displayed height", "height" },
     { "s", HAS_ARG | OPT_VIDEO, {(void*)opt_frame_size}, "set frame size (WxH or abbreviation)", "size" },




More information about the ffmpeg-cvslog mailing list