diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2023-01-15 03:13:01 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2023-02-11 17:49:01 +0100 |
commit | 7f5630a89983ac4f156ad643c0c8c42400e8102b (patch) | |
tree | df8a72c6f0f4f9204d76d1ce6cbc6024037c431f /doc | |
parent | f0a415c7eb47d4a71c93948f564d91d812070f6a (diff) | |
download | ffmpeg-7f5630a89983ac4f156ad643c0c8c42400e8102b.tar.gz |
examples: rename demuxing_decoding to demux_decode
Follow general scheme VERB_OBJECT.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/Makefile | 2 | ||||
-rw-r--r-- | doc/examples/Makefile.example | 2 | ||||
-rw-r--r-- | doc/examples/demux_decode.c (renamed from doc/examples/demuxing_decoding.c) | 4 |
3 files changed, 4 insertions, 4 deletions
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> |