examples: rename demuxing_decoding to demux_decode

Follow general scheme VERB_OBJECT.
This commit is contained in:
Stefano Sabatini 2023-01-15 03:13:01 +01:00
parent f0a415c7eb
commit 7f5630a899
4 changed files with 6 additions and 6 deletions

4
configure vendored
View File

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

View File

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

View File

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

View File

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