diff mbox series

[FFmpeg-devel,11/15] examples: rename scaling_video to scale_video

Message ID 20230115161035.584474-12-stefasab@gmail.com
State Accepted
Commit 3856f82ef9e70d6989ad2830ea7166e0a7508869
Headers show
Series [FFmpeg-devel,01/15] examples: rename avio_reading to avio_read_callback | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished

Commit Message

Stefano Sabatini Jan. 15, 2023, 4:10 p.m. UTC
---
 configure                                       | 4 ++--
 doc/examples/Makefile                           | 2 +-
 doc/examples/Makefile.example                   | 2 +-
 doc/examples/{scaling_video.c => scale_video.c} | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
 rename doc/examples/{scaling_video.c => scale_video.c} (99%)
diff mbox series

Patch

diff --git a/configure b/configure
index e767f9da79..117c9c2f7b 100755
--- a/configure
+++ b/configure
@@ -1727,7 +1727,7 @@  EXAMPLE_LIST="
     qsv_decode_example
     remux_example
     resample_audio_example
-    scaling_video_example
+    scale_video_example
     show_metadata_example
     transcode_aac_example
     transcoding_example
@@ -3784,7 +3784,7 @@  mux_example_deps="avcodec avformat avutil swscale"
 qsv_decode_example_deps="avcodec avutil libmfx h264_qsv_decoder"
 remux_example_deps="avcodec avformat avutil"
 resample_audio_example_deps="avutil swresample"
-scaling_video_example_deps="avutil swscale"
+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"
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index 4ea0d95ca1..a42bcd4465 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -15,7 +15,7 @@  EXAMPLES-$(CONFIG_MUX_EXAMPLE)               += mux
 EXAMPLES-$(CONFIG_QSV_DECODE_EXAMPLE)        += qsv_decode
 EXAMPLES-$(CONFIG_REMUX_EXAMPLE)             += remux
 EXAMPLES-$(CONFIG_RESAMPLE_AUDIO_EXAMPLE)    += resample_audio
-EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE)     += scaling_video
+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
diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example
index f632c0e490..da7a947830 100644
--- a/doc/examples/Makefile.example
+++ b/doc/examples/Makefile.example
@@ -27,7 +27,7 @@  EXAMPLES=\
                 mux                                \
                 remux                              \
                 resample_audio                     \
-                scaling_video                      \
+                scale_video                        \
                 show_metadata                      \
                 transcode_aac                      \
                 transcoding                        \
diff --git a/doc/examples/scaling_video.c b/doc/examples/scale_video.c
similarity index 99%
rename from doc/examples/scaling_video.c
rename to doc/examples/scale_video.c
index 587f3abe4f..27cd00996d 100644
--- a/doc/examples/scaling_video.c
+++ b/doc/examples/scale_video.c
@@ -23,7 +23,7 @@ 
 /**
  * @file
  * libswscale API use example.
- * @example scaling_video.c
+ * @example scale_video.c
  */
 
 #include <libavutil/imgutils.h>