summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2023-01-15 12:49:32 +0100
committerStefano Sabatini <stefasab@gmail.com>2023-02-11 17:49:01 +0100
commit7a53ae931d3cac6f78993ba5480efd684a835cbc (patch)
treed16e15b8efeaa8fd9c257334d90c41dc3ce9b88d
parent2e4694707e619ddb736489cc32ace997c6788930 (diff)
downloadffmpeg-7a53ae931d3cac6f78993ba5480efd684a835cbc.tar.gz
examples: rename metadata to show_metadata
-rwxr-xr-xconfigure4
-rw-r--r--doc/examples/Makefile2
-rw-r--r--doc/examples/Makefile.example2
-rw-r--r--doc/examples/show_metadata.c (renamed from doc/examples/metadata.c)2
4 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure
index b695c77c58..6d4e184241 100755
--- a/configure
+++ b/configure
@@ -1723,12 +1723,12 @@ EXAMPLE_LIST="
extract_mvs_example
filter_audio_example
hw_decode_example
- metadata_example
muxing_example
qsvdec_example
remuxing_example
resampling_audio_example
scaling_video_example
+ show_metadata_example
transcode_aac_example
transcoding_example
vaapi_encode_example
@@ -3787,12 +3787,12 @@ encode_video_example_deps="avcodec avutil"
extract_mvs_example_deps="avcodec avformat avutil"
filter_audio_example_deps="avfilter avutil"
hw_decode_example_deps="avcodec avformat avutil"
-metadata_example_deps="avformat avutil"
muxing_example_deps="avcodec avformat avutil swscale"
qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder"
remuxing_example_deps="avcodec avformat avutil"
resampling_audio_example_deps="avutil swresample"
scaling_video_example_deps="avutil swscale"
+show_metadata_example_deps="avformat avutil"
transcode_aac_example_deps="avcodec avformat swresample"
transcoding_example_deps="avfilter avcodec avformat avutil"
vaapi_encode_example_deps="avcodec avutil h264_vaapi_encoder"
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index f640a5e636..44a56dd84d 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -11,12 +11,12 @@ EXAMPLES-$(CONFIG_ENCODE_VIDEO_EXAMPLE) += encode_video
EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE) += extract_mvs
EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio
EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE) += hw_decode
-EXAMPLES-$(CONFIG_METADATA_EXAMPLE) += metadata
EXAMPLES-$(CONFIG_MUXING_EXAMPLE) += muxing
EXAMPLES-$(CONFIG_QSVDEC_EXAMPLE) += qsvdec
EXAMPLES-$(CONFIG_REMUXING_EXAMPLE) += remuxing
EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE) += resampling_audio
EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE) += scaling_video
+EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE) += show_metadata
EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac
EXAMPLES-$(CONFIG_TRANSCODING_EXAMPLE) += transcoding
EXAMPLES-$(CONFIG_VAAPI_ENCODE_EXAMPLE) += vaapi_encode
diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example
index 9e725715a5..db09ceddd1 100644
--- a/doc/examples/Makefile.example
+++ b/doc/examples/Makefile.example
@@ -24,11 +24,11 @@ EXAMPLES=\
encode_video \
extract_mvs \
hw_decode \
- metadata \
muxing \
remuxing \
resampling_audio \
scaling_video \
+ show_metadata \
transcode_aac \
transcoding \
diff --git a/doc/examples/metadata.c b/doc/examples/show_metadata.c
index 734b12df16..f7f07bf598 100644
--- a/doc/examples/metadata.c
+++ b/doc/examples/show_metadata.c
@@ -23,7 +23,7 @@
/**
* @file
* Shows how the metadata API can be used in application programs.
- * @example metadata.c
+ * @example show_metadata.c
*/
#include <stdio.h>