From 767d780ec001167b2fd8f6cfe4ef78a3a8b1e34c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Szczepa=C5=84czyk?= Date: Sat, 15 Aug 2015 17:59:17 +0200 Subject: [PATCH] doc/examples: rename avio_list_dir -> avio_dir_cmd Signed-off-by: Michael Niedermayer --- .gitignore | 2 +- configure | 4 ++-- doc/Makefile | 2 +- doc/examples/Makefile | 2 +- doc/examples/{avio_list_dir.c => avio_dir_cmd.c} | 0 5 files changed, 5 insertions(+), 5 deletions(-) rename doc/examples/{avio_list_dir.c => avio_dir_cmd.c} (100%) 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 similarity index 100% rename from doc/examples/avio_list_dir.c rename to doc/examples/avio_dir_cmd.c