mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
examples: rename avio_reading to avio_read_callback
Adopt general scheme VERB_OBJECT.
This commit is contained in:
parent
2a3a36e279
commit
f0a415c7eb
4
configure
vendored
4
configure
vendored
@ -1711,7 +1711,7 @@ COMPONENT_LIST="
|
||||
|
||||
EXAMPLE_LIST="
|
||||
avio_list_dir_example
|
||||
avio_reading_example
|
||||
avio_read_callback_example
|
||||
decode_audio_example
|
||||
decode_video_example
|
||||
demuxing_decoding_example
|
||||
@ -3775,7 +3775,7 @@ xstack_vaapi_filter_deps="vaapi_1"
|
||||
|
||||
# examples
|
||||
avio_list_dir_deps="avformat avutil"
|
||||
avio_reading_deps="avformat avcodec 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"
|
||||
|
@ -1,5 +1,5 @@
|
||||
EXAMPLES-$(CONFIG_AVIO_LIST_DIR_EXAMPLE) += avio_list_dir
|
||||
EXAMPLES-$(CONFIG_AVIO_READING_EXAMPLE) += avio_reading
|
||||
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
|
||||
|
@ -12,7 +12,7 @@ CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
|
||||
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)
|
||||
|
||||
EXAMPLES= avio_list_dir \
|
||||
avio_reading \
|
||||
avio_read_callback \
|
||||
decode_audio \
|
||||
decode_video \
|
||||
demuxing_decoding \
|
||||
|
@ -26,7 +26,7 @@
|
||||
*
|
||||
* Make libavformat demuxer access media content through a custom
|
||||
* AVIOContext read callback.
|
||||
* @example avio_reading.c
|
||||
* @example avio_read_callback.c
|
||||
*/
|
||||
|
||||
#include <libavcodec/avcodec.h>
|
Loading…
Reference in New Issue
Block a user