[FFmpeg-cvslog] examples: rename transcoding to transcode
Stefano Sabatini
git at videolan.org
Sat Feb 11 19:10:03 EET 2023
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sun Jan 15 13:11:09 2023 +0100| [3d4dc6aa778e60073f608d379139b46051da2302] | committer: Stefano Sabatini
examples: rename transcoding to transcode
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3d4dc6aa778e60073f608d379139b46051da2302
---
configure | 4 ++--
doc/examples/Makefile | 2 +-
doc/examples/Makefile.example | 2 +-
doc/examples/{transcoding.c => transcode.c} | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/configure b/configure
index 8b746d4abf..932805ccf3 100755
--- a/configure
+++ b/configure
@@ -1730,7 +1730,7 @@ EXAMPLE_LIST="
scale_video_example
show_metadata_example
transcode_aac_example
- transcoding_example
+ transcode_example
vaapi_encode_example
vaapi_transcode_example
qsv_transcode_example
@@ -3794,7 +3794,7 @@ resample_audio_example_deps="avutil swresample"
scale_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"
+transcode_example_deps="avfilter avcodec avformat avutil"
vaapi_encode_example_deps="avcodec avutil h264_vaapi_encoder"
vaapi_transcode_example_deps="avcodec avformat avutil h264_vaapi_encoder"
qsv_transcode_example_deps="avcodec avformat avutil h264_qsv_encoder"
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index a42bcd4465..4efed6b11d 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -18,7 +18,7 @@ EXAMPLES-$(CONFIG_RESAMPLE_AUDIO_EXAMPLE) += resample_audio
EXAMPLES-$(CONFIG_SCALE_VIDEO_EXAMPLE) += scale_video
EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE) += show_metadata
EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac
-EXAMPLES-$(CONFIG_TRANSCODING_EXAMPLE) += transcoding
+EXAMPLES-$(CONFIG_TRANSCODE_EXAMPLE) += transcode
EXAMPLES-$(CONFIG_VAAPI_ENCODE_EXAMPLE) += vaapi_encode
EXAMPLES-$(CONFIG_VAAPI_TRANSCODE_EXAMPLE) += vaapi_transcode
EXAMPLES-$(CONFIG_QSV_TRANSCODE_EXAMPLE) += qsv_transcode
diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example
index da7a947830..730d7e1a9a 100644
--- a/doc/examples/Makefile.example
+++ b/doc/examples/Makefile.example
@@ -30,7 +30,7 @@ EXAMPLES=\
scale_video \
show_metadata \
transcode_aac \
- transcoding \
+ transcode \
OBJS=$(addsuffix .o,$(EXAMPLES))
diff --git a/doc/examples/transcoding.c b/doc/examples/transcode.c
similarity index 99%
rename from doc/examples/transcoding.c
rename to doc/examples/transcode.c
index 013f89fc7d..b0f4fb0399 100644
--- a/doc/examples/transcoding.c
+++ b/doc/examples/transcode.c
@@ -25,7 +25,7 @@
/**
* @file
* API example for demuxing, decoding, filtering, encoding and muxing
- * @example transcoding.c
+ * @example transcode.c
*/
#include <libavcodec/avcodec.h>
More information about the ffmpeg-cvslog
mailing list