diff mbox series

[FFmpeg-devel,10/15] examples: rename resampling audio to resample_audio

Message ID 20230115161035.584474-11-stefasab@gmail.com
State Accepted
Commit cd8211527efbb9cad19db1c0d033da0749836e43
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/{resampling_audio.c => resample_audio.c} | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
 rename doc/examples/{resampling_audio.c => resample_audio.c} (99%)
diff mbox series

Patch

diff --git a/configure b/configure
index f8059d2a68..e767f9da79 100755
--- a/configure
+++ b/configure
@@ -1726,7 +1726,7 @@  EXAMPLE_LIST="
     mux_example
     qsv_decode_example
     remux_example
-    resampling_audio_example
+    resample_audio_example
     scaling_video_example
     show_metadata_example
     transcode_aac_example
@@ -3783,7 +3783,7 @@  hw_decode_example_deps="avcodec avformat avutil"
 mux_example_deps="avcodec avformat avutil swscale"
 qsv_decode_example_deps="avcodec avutil libmfx h264_qsv_decoder"
 remux_example_deps="avcodec avformat avutil"
-resampling_audio_example_deps="avutil swresample"
+resample_audio_example_deps="avutil swresample"
 scaling_video_example_deps="avutil swscale"
 show_metadata_example_deps="avformat avutil"
 transcode_aac_example_deps="avcodec avformat swresample"
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index 8cc9d4e80e..4ea0d95ca1 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -14,7 +14,7 @@  EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE)         += hw_decode
 EXAMPLES-$(CONFIG_MUX_EXAMPLE)               += mux
 EXAMPLES-$(CONFIG_QSV_DECODE_EXAMPLE)        += qsv_decode
 EXAMPLES-$(CONFIG_REMUX_EXAMPLE)             += remux
-EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE)  += resampling_audio
+EXAMPLES-$(CONFIG_RESAMPLE_AUDIO_EXAMPLE)    += resample_audio
 EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE)     += scaling_video
 EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE)     += show_metadata
 EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE)     += transcode_aac
diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example
index ff30f9a3da..f632c0e490 100644
--- a/doc/examples/Makefile.example
+++ b/doc/examples/Makefile.example
@@ -26,7 +26,7 @@  EXAMPLES=\
                 hw_decode                          \
                 mux                                \
                 remux                              \
-                resampling_audio                   \
+                resample_audio                     \
                 scaling_video                      \
                 show_metadata                      \
                 transcode_aac                      \
diff --git a/doc/examples/resampling_audio.c b/doc/examples/resample_audio.c
similarity index 99%
rename from doc/examples/resampling_audio.c
rename to doc/examples/resample_audio.c
index 9f1521a5a5..890d30c934 100644
--- a/doc/examples/resampling_audio.c
+++ b/doc/examples/resample_audio.c
@@ -21,7 +21,7 @@ 
  */
 
 /**
- * @example resampling_audio.c
+ * @example resample_audio.c
  * libswresample API use example.
  */