examples: rename metadata to show_metadata

This commit is contained in:
Stefano Sabatini 2023-01-15 12:49:32 +01:00
parent 2e4694707e
commit 7a53ae931d
4 changed files with 5 additions and 5 deletions

4
configure vendored
View File

@ -1723,12 +1723,12 @@ EXAMPLE_LIST="
extract_mvs_example extract_mvs_example
filter_audio_example filter_audio_example
hw_decode_example hw_decode_example
metadata_example
muxing_example muxing_example
qsvdec_example qsvdec_example
remuxing_example remuxing_example
resampling_audio_example resampling_audio_example
scaling_video_example scaling_video_example
show_metadata_example
transcode_aac_example transcode_aac_example
transcoding_example transcoding_example
vaapi_encode_example vaapi_encode_example
@ -3787,12 +3787,12 @@ encode_video_example_deps="avcodec avutil"
extract_mvs_example_deps="avcodec avformat avutil" extract_mvs_example_deps="avcodec avformat avutil"
filter_audio_example_deps="avfilter avutil" filter_audio_example_deps="avfilter avutil"
hw_decode_example_deps="avcodec avformat avutil" hw_decode_example_deps="avcodec avformat avutil"
metadata_example_deps="avformat avutil"
muxing_example_deps="avcodec avformat avutil swscale" muxing_example_deps="avcodec avformat avutil swscale"
qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder" qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder"
remuxing_example_deps="avcodec avformat avutil" remuxing_example_deps="avcodec avformat avutil"
resampling_audio_example_deps="avutil swresample" resampling_audio_example_deps="avutil swresample"
scaling_video_example_deps="avutil swscale" scaling_video_example_deps="avutil swscale"
show_metadata_example_deps="avformat avutil"
transcode_aac_example_deps="avcodec avformat swresample" transcode_aac_example_deps="avcodec avformat swresample"
transcoding_example_deps="avfilter avcodec avformat avutil" transcoding_example_deps="avfilter avcodec avformat avutil"
vaapi_encode_example_deps="avcodec avutil h264_vaapi_encoder" vaapi_encode_example_deps="avcodec avutil h264_vaapi_encoder"

View File

@ -11,12 +11,12 @@ EXAMPLES-$(CONFIG_ENCODE_VIDEO_EXAMPLE) += encode_video
EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE) += extract_mvs EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE) += extract_mvs
EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio
EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE) += hw_decode EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE) += hw_decode
EXAMPLES-$(CONFIG_METADATA_EXAMPLE) += metadata
EXAMPLES-$(CONFIG_MUXING_EXAMPLE) += muxing EXAMPLES-$(CONFIG_MUXING_EXAMPLE) += muxing
EXAMPLES-$(CONFIG_QSVDEC_EXAMPLE) += qsvdec EXAMPLES-$(CONFIG_QSVDEC_EXAMPLE) += qsvdec
EXAMPLES-$(CONFIG_REMUXING_EXAMPLE) += remuxing EXAMPLES-$(CONFIG_REMUXING_EXAMPLE) += remuxing
EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE) += resampling_audio EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE) += resampling_audio
EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE) += scaling_video EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE) += scaling_video
EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE) += show_metadata
EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac
EXAMPLES-$(CONFIG_TRANSCODING_EXAMPLE) += transcoding EXAMPLES-$(CONFIG_TRANSCODING_EXAMPLE) += transcoding
EXAMPLES-$(CONFIG_VAAPI_ENCODE_EXAMPLE) += vaapi_encode EXAMPLES-$(CONFIG_VAAPI_ENCODE_EXAMPLE) += vaapi_encode

View File

@ -24,11 +24,11 @@ EXAMPLES=\
encode_video \ encode_video \
extract_mvs \ extract_mvs \
hw_decode \ hw_decode \
metadata \
muxing \ muxing \
remuxing \ remuxing \
resampling_audio \ resampling_audio \
scaling_video \ scaling_video \
show_metadata \
transcode_aac \ transcode_aac \
transcoding \ transcoding \

View File

@ -23,7 +23,7 @@
/** /**
* @file * @file
* Shows how the metadata API can be used in application programs. * Shows how the metadata API can be used in application programs.
* @example metadata.c * @example show_metadata.c
*/ */
#include <stdio.h> #include <stdio.h>