diff mbox series

[FFmpeg-devel,08/15] examples: rename qsvdec to qsv_decode

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

Patch

diff --git a/configure b/configure
index b65fdc6187..e277014e26 100755
--- a/configure
+++ b/configure
@@ -1724,7 +1724,7 @@  EXAMPLE_LIST="
     filter_audio_example
     hw_decode_example
     mux_example
-    qsvdec_example
+    qsv_decode_example
     remuxing_example
     resampling_audio_example
     scaling_video_example
@@ -3781,7 +3781,7 @@  extract_mvs_example_deps="avcodec avformat avutil"
 filter_audio_example_deps="avfilter avutil"
 hw_decode_example_deps="avcodec avformat avutil"
 mux_example_deps="avcodec avformat avutil swscale"
-qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder"
+qsv_decode_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"
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index c91d26e4a0..9342fae744 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -12,7 +12,7 @@  EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE)       += extract_mvs
 EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE)      += filter_audio
 EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE)         += hw_decode
 EXAMPLES-$(CONFIG_MUX_EXAMPLE)               += mux
-EXAMPLES-$(CONFIG_QSVDEC_EXAMPLE)            += qsvdec
+EXAMPLES-$(CONFIG_QSV_DECODE_EXAMPLE)        += qsv_decode
 EXAMPLES-$(CONFIG_REMUXING_EXAMPLE)          += remuxing
 EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE)  += resampling_audio
 EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE)     += scaling_video
diff --git a/doc/examples/qsvdec.c b/doc/examples/qsv_decode.c
similarity index 99%
rename from doc/examples/qsvdec.c
rename to doc/examples/qsv_decode.c
index b662ae91c3..0cdef4466c 100644
--- a/doc/examples/qsvdec.c
+++ b/doc/examples/qsv_decode.c
@@ -24,7 +24,7 @@ 
  * @file
  * Intel QSV-accelerated H.264 decoding example.
  *
- * @example qsvdec.c
+ * @example qsv_decode.c
  * This example shows how to do QSV-accelerated H.264 decoding with output
  * frames in the GPU video surfaces.
  */