OSDN Git Service

doc/examples: rename demuxing to demuxing_decoding.
authorClément Bœsch <clement@stupeflix.com>
Mon, 4 Nov 2013 11:35:17 +0000 (12:35 +0100)
committerClément Bœsch <clement@stupeflix.com>
Mon, 4 Nov 2013 11:53:06 +0000 (12:53 +0100)
That example shows how the decoding process works, not only the
demuxing.

.gitignore
doc/examples/Makefile
doc/examples/demuxing_decoding.c [moved from doc/examples/demuxing.c with 99% similarity]

index 1f13ec4..7d8adda 100644 (file)
@@ -36,7 +36,7 @@
 /doc/avoptions_codec.texi
 /doc/avoptions_format.texi
 /doc/examples/decoding_encoding
-/doc/examples/demuxing
+/doc/examples/demuxing_decoding
 /doc/examples/filtering_audio
 /doc/examples/filtering_video
 /doc/examples/metadata
index 3d698cc..cc5ee11 100644 (file)
@@ -12,7 +12,7 @@ CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
 LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
 
 EXAMPLES=       decoding_encoding                  \
-                demuxing                           \
+                demuxing_decoding                  \
                 filtering_video                    \
                 filtering_audio                    \
                 metadata                           \
similarity index 99%
rename from doc/examples/demuxing.c
rename to doc/examples/demuxing_decoding.c
index b13246e..325c7b8 100644 (file)
 
 /**
  * @file
- * libavformat demuxing API use example.
+ * Demuxing and decoding example.
  *
  * Show how to use the libavformat and libavcodec API to demux and
  * decode audio and video data.
- * @example doc/examples/demuxing.c
+ * @example doc/examples/demuxing_decoding.c
  */
 
 #include <libavutil/imgutils.h>