mirror of https://git.ffmpeg.org/ffmpeg.git
examples: rename demuxing_decoding to demux_decode
Follow general scheme VERB_OBJECT.
This commit is contained in:
parent
f0a415c7eb
commit
7f5630a899
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue