Browse Source

doc/examples: rename avio_list_dir -> avio_dir_cmd

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n2.8
Mariusz Szczepańczyk Michael Niedermayer 9 years ago
parent
commit
767d780ec0
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      .gitignore
  2. +2
    -2
      configure
  3. +1
    -1
      doc/Makefile
  4. +1
    -1
      doc/examples/Makefile
  5. +0
    -0
      doc/examples/avio_dir_cmd.c

+ 1
- 1
.gitignore View 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


+ 2
- 2
configure View File

@@ -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"


+ 1
- 1
doc/Makefile View 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


+ 1
- 1
doc/examples/Makefile View 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 \


doc/examples/avio_list_dir.c → doc/examples/avio_dir_cmd.c View File


Loading…
Cancel
Save