]> git.sesse.net Git - ffmpeg/commitdiff
doc/examples: rename avio_list_dir -> avio_dir_cmd
authorMariusz SzczepaƄczyk <mszczepanczyk@gmail.com>
Sat, 15 Aug 2015 15:59:17 +0000 (17:59 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 16 Aug 2015 00:16:47 +0000 (02:16 +0200)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
.gitignore
configure
doc/Makefile
doc/examples/Makefile
doc/examples/avio_dir_cmd.c [moved from doc/examples/avio_list_dir.c with 100% similarity]

index 6a3664a573830924ba3e2c2a5df1f879d052b95e..cb9cbec6bc337b4afaa85ba384351fb5aaecea20 100644 (file)
@@ -37,7 +37,7 @@
 /doc/avoptions_codec.texi
 /doc/avoptions_format.texi
 /doc/doxy/html/
-/doc/examples/avio_list_dir
+/doc/examples/avio_dir_cmd
 /doc/examples/avio_reading
 /doc/examples/decoding_encoding
 /doc/examples/demuxing_decoding
index 3ad72d8ef0a06110ce4dcb915a894b5e1b61850b..381b09e519c7a452230e1bdfb27703ce3ab9bea8 100755 (executable)
--- a/configure
+++ b/configure
@@ -1343,7 +1343,7 @@ COMPONENT_LIST="
 
 EXAMPLE_LIST="
     avio_reading_example
-    avio_list_dir_example
+    avio_dir_cmd_example
     decoding_encoding_example
     demuxing_decoding_example
     extract_mvs_example
@@ -2803,7 +2803,7 @@ zoompan_filter_deps="swscale"
 
 # examples
 avio_reading="avformat avcodec avutil"
-avio_list_dir="avformat avutil"
+avio_dir_cmd="avformat avutil"
 avcodec_example_deps="avcodec avutil"
 decoding_encoding_example_deps="avcodec avformat avutil"
 demuxing_decoding_example_deps="avcodec avformat avutil"
index 4573531184c0ade0afba6a9f99a1dcafb5f14745..3e67c2a289f36effcf2dfa8878ca6bfd5571e31d 100644 (file)
@@ -36,7 +36,7 @@ DOCS-$(CONFIG_MANPAGES)  += $(MANPAGES)
 DOCS-$(CONFIG_TXTPAGES)  += $(TXTPAGES)
 DOCS = $(DOCS-yes)
 
-DOC_EXAMPLES-$(CONFIG_AVIO_LIST_DIR_EXAMPLE)     += avio_list_dir
+DOC_EXAMPLES-$(CONFIG_AVIO_DIR_CMD_EXAMPLE)      += avio_dir_cmd
 DOC_EXAMPLES-$(CONFIG_AVIO_READING_EXAMPLE)      += avio_reading
 DOC_EXAMPLES-$(CONFIG_AVCODEC_EXAMPLE)           += avcodec
 DOC_EXAMPLES-$(CONFIG_DECODING_ENCODING_EXAMPLE) += decoding_encoding
index 8c9501b709dc68f540e272274dcbbced1db44db8..af3815995a0cfda5bc34f543ad24ed2af3615848 100644 (file)
@@ -11,7 +11,7 @@ CFLAGS += -Wall -g
 CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
 LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
 
-EXAMPLES=       avio_list_dir                      \
+EXAMPLES=       avio_dir_cmd                       \
                 avio_reading                       \
                 decoding_encoding                  \
                 demuxing_decoding                  \