Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz SzczepaƄczyk <mszczepanczyk@gmail.com>2015-08-15 18:59:17 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-16 03:16:47 +0300
commit767d780ec001167b2fd8f6cfe4ef78a3a8b1e34c (patch)
treebad84d2e5ff2f33b82b37054762bb97956ab1e73
parent4ada49f9dbed6ab1a84cf2d79f0e8b5e549b0b6a (diff)
doc/examples: rename avio_list_dir -> avio_dir_cmd
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--.gitignore2
-rwxr-xr-xconfigure4
-rw-r--r--doc/Makefile2
-rw-r--r--doc/examples/Makefile2
-rw-r--r--doc/examples/avio_dir_cmd.c (renamed from doc/examples/avio_list_dir.c)0
5 files changed, 5 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 6a3664a573..cb9cbec6bc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/configure b/configure
index 3ad72d8ef0..381b09e519 100755
--- 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"
diff --git a/doc/Makefile b/doc/Makefile
index 4573531184..3e67c2a289 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -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
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index 8c9501b709..af3815995a 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -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 \
diff --git a/doc/examples/avio_list_dir.c b/doc/examples/avio_dir_cmd.c
index 50c435cf8f..50c435cf8f 100644
--- a/doc/examples/avio_list_dir.c
+++ b/doc/examples/avio_dir_cmd.c