summaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2023-01-15 13:11:09 +0100
committerStefano Sabatini <stefasab@gmail.com>2023-02-11 17:49:01 +0100
commit3d4dc6aa778e60073f608d379139b46051da2302 (patch)
treee5b8e17846f0bebe047817b83122ddd6e93bc237 /doc/examples
parent3856f82ef9e70d6989ad2830ea7166e0a7508869 (diff)
downloadffmpeg-3d4dc6aa778e60073f608d379139b46051da2302.tar.gz
examples: rename transcoding to transcode
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/Makefile2
-rw-r--r--doc/examples/Makefile.example2
-rw-r--r--doc/examples/transcode.c (renamed from doc/examples/transcoding.c)2
3 files changed, 3 insertions, 3 deletions
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
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>