Browse code

Rename the "-loop" option defined in ffmpeg.c to "-loop_input" ("-loop" conflicts with an AVOption)

Originally committed as revision 5077 to svn://svn.ffmpeg.org/ffmpeg/trunk

Luca Abeni authored on 2006/02/28 20:32:31
Showing 1 changed files
... ...
@@ -4025,7 +4025,7 @@ const OptionDef options[] = {
4025 4025
     { "hex", OPT_BOOL | OPT_EXPERT, {(void*)&do_hex_dump},
4026 4026
       "when dumping packets, also dump the payload" },
4027 4027
     { "re", OPT_BOOL | OPT_EXPERT, {(void*)&rate_emu}, "read input at native frame rate", "" },
4028
-    { "loop", OPT_BOOL | OPT_EXPERT, {(void*)&loop_input}, "loop (current only works with images)" },
4028
+    { "loop_input", OPT_BOOL | OPT_EXPERT, {(void*)&loop_input}, "loop (current only works with images)" },
4029 4029
     { "loop_output", HAS_ARG | OPT_INT | OPT_EXPERT, {(void*)&loop_output}, "number of times to loop output in formats that support looping (0 loops forever)", "" },
4030 4030
     { "v", HAS_ARG, {(void*)opt_verbose}, "control amount of logging", "verbose" },
4031 4031
     { "target", HAS_ARG, {(void*)opt_target}, "specify target file type (\"vcd\", \"svcd\", \"dvd\", \"dv\", \"pal-vcd\", \"ntsc-svcd\", ...)", "type" },