mirror of https://git.ffmpeg.org/ffmpeg.git
examples: rename qsvdec to qsv_decode
This commit is contained in:
parent
eac4324bfb
commit
ab2ec8ef01
|
@ -1724,7 +1724,7 @@ EXAMPLE_LIST="
|
||||||
filter_audio_example
|
filter_audio_example
|
||||||
hw_decode_example
|
hw_decode_example
|
||||||
mux_example
|
mux_example
|
||||||
qsvdec_example
|
qsv_decode_example
|
||||||
remuxing_example
|
remuxing_example
|
||||||
resampling_audio_example
|
resampling_audio_example
|
||||||
scaling_video_example
|
scaling_video_example
|
||||||
|
@ -3788,7 +3788,7 @@ extract_mvs_example_deps="avcodec avformat avutil"
|
||||||
filter_audio_example_deps="avfilter avutil"
|
filter_audio_example_deps="avfilter avutil"
|
||||||
hw_decode_example_deps="avcodec avformat avutil"
|
hw_decode_example_deps="avcodec avformat avutil"
|
||||||
mux_example_deps="avcodec avformat avutil swscale"
|
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"
|
remuxing_example_deps="avcodec avformat avutil"
|
||||||
resampling_audio_example_deps="avutil swresample"
|
resampling_audio_example_deps="avutil swresample"
|
||||||
scaling_video_example_deps="avutil swscale"
|
scaling_video_example_deps="avutil swscale"
|
||||||
|
|
|
@ -12,7 +12,7 @@ EXAMPLES-$(CONFIG_EXTRACT_MVS_EXAMPLE) += extract_mvs
|
||||||
EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio
|
EXAMPLES-$(CONFIG_FILTER_AUDIO_EXAMPLE) += filter_audio
|
||||||
EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE) += hw_decode
|
EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE) += hw_decode
|
||||||
EXAMPLES-$(CONFIG_MUX_EXAMPLE) += mux
|
EXAMPLES-$(CONFIG_MUX_EXAMPLE) += mux
|
||||||
EXAMPLES-$(CONFIG_QSVDEC_EXAMPLE) += qsvdec
|
EXAMPLES-$(CONFIG_QSV_DECODE_EXAMPLE) += qsv_decode
|
||||||
EXAMPLES-$(CONFIG_REMUXING_EXAMPLE) += remuxing
|
EXAMPLES-$(CONFIG_REMUXING_EXAMPLE) += remuxing
|
||||||
EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE) += resampling_audio
|
EXAMPLES-$(CONFIG_RESAMPLING_AUDIO_EXAMPLE) += resampling_audio
|
||||||
EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE) += scaling_video
|
EXAMPLES-$(CONFIG_SCALING_VIDEO_EXAMPLE) += scaling_video
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* @file
|
* @file
|
||||||
* Intel QSV-accelerated H.264 decoding example.
|
* 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
|
* This example shows how to do QSV-accelerated H.264 decoding with output
|
||||||
* frames in the GPU video surfaces.
|
* frames in the GPU video surfaces.
|
||||||
*/
|
*/
|
Loading…
Reference in New Issue