summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2023-01-15 03:13:01 +0100
committerStefano Sabatini <stefasab@gmail.com>2023-02-11 17:49:01 +0100
commit7f5630a89983ac4f156ad643c0c8c42400e8102b (patch)
treedf8a72c6f0f4f9204d76d1ce6cbc6024037c431f
parentf0a415c7eb47d4a71c93948f564d91d812070f6a (diff)
examples: rename demuxing_decoding to demux_decode
Follow general scheme VERB_OBJECT.
-rwxr-xr-xconfigure4
-rw-r--r--doc/examples/Makefile2
-rw-r--r--doc/examples/Makefile.example2
-rw-r--r--doc/examples/demux_decode.c (renamed from doc/examples/demuxing_decoding.c)4
4 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 7e2fdc2bea..543d695873 100755
--- a/configure
+++ b/configure
@@ -1714,7 +1714,7 @@ EXAMPLE_LIST="
avio_read_callback_example
decode_audio_example
decode_video_example
- demuxing_decoding_example
+ demux_decode_example
encode_audio_example
encode_video_example
extract_mvs_example
@@ -3778,7 +3778,7 @@ avio_list_dir_deps="avformat avutil"
avio_read_callback_deps="avformat avcodec avutil"
decode_audio_example_deps="avcodec avutil"
decode_video_example_deps="avcodec avutil"
-demuxing_decoding_example_deps="avcodec avformat avutil"
+demux_decode_example_deps="avcodec avformat avutil"
encode_audio_example_deps="avcodec avutil"
encode_video_example_deps="avcodec avutil"
extract_mvs_example_deps="avcodec avformat avutil"
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index a651f5877a..adfcdb6aa3 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -2,7 +2,7 @@ EXAMPLES-$(CONFIG_AVIO_LIST_DIR_EXAMPLE) += avio_list_dir
EXAMPLES-$(CONFIG_AVIO_READ_CALLBACK_EXAMPLE) += avio_read_callback
EXAMPLES-$(CONFIG_DECODE_AUDIO_EXAMPLE) += decode_audio
EXAMPLES-$(CONFIG_DECODE_VIDEO_EXAMPLE) += decode_video
-EXAMPLES-$(CONFIG_DEMUXING_DECODING_EXAMPLE) += demuxing_decoding
+EXAMPLES-$(CONFIG_DEMUX_DECODE_EXAMPLE) += demux_decode
EXAMPLES-$(CONFIG_ENCODE_AUDIO_EXAMPLE) += encode_audio
EXAMPLES-$(CONFIG_ENCODE_VIDEO_EXAMPLE) += encode_video
EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE) += extract_mvs
diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example
index bcb485e306..33af323c6f 100644
--- a/doc/examples/Makefile.example
+++ b/doc/examples/Makefile.example
@@ -15,7 +15,7 @@ EXAMPLES= avio_list_dir \
avio_read_callback \
decode_audio \
decode_video \
- demuxing_decoding \
+ demux_decode \
encode_audio \
encode_video \
extract_mvs \
diff --git a/doc/examples/demuxing_decoding.c b/doc/examples/demux_decode.c
index 999a78db0d..a2ca53b26b 100644
--- a/doc/examples/demuxing_decoding.c
+++ b/doc/examples/demux_decode.c
@@ -22,11 +22,11 @@
/**
* @file
- * Demuxing and decoding example.
+ * libavformat and libavcodec API example to demux and decode.
*
* Show how to use the libavformat and libavcodec API to demux and
* decode audio and video data.
- * @example demuxing_decoding.c
+ * @example demux_decode.c
*/
#include <libavutil/imgutils.h>