examples: rename resampling audio to resample_audio

This commit is contained in:
Stefano Sabatini 2023-01-15 16:43:06 +01:00
parent 0a69ca656b
commit cd8211527e
4 changed files with 5 additions and 5 deletions

4
configure vendored
View file

@ -1726,7 +1726,7 @@ EXAMPLE_LIST="
mux_example mux_example
qsv_decode_example qsv_decode_example
remux_example remux_example
resampling_audio_example resample_audio_example
scaling_video_example scaling_video_example
show_metadata_example show_metadata_example
transcode_aac_example transcode_aac_example
@ -3790,7 +3790,7 @@ hw_decode_example_deps="avcodec avformat avutil"
mux_example_deps="avcodec avformat avutil swscale" mux_example_deps="avcodec avformat avutil swscale"
qsv_decode_example_deps="avcodec avutil libmfx h264_qsv_decoder" qsv_decode_example_deps="avcodec avutil libmfx h264_qsv_decoder"
remux_example_deps="avcodec avformat avutil" remux_example_deps="avcodec avformat avutil"
resampling_audio_example_deps="avutil swresample" resample_audio_example_deps="avutil swresample"
scaling_video_example_deps="avutil swscale" scaling_video_example_deps="avutil swscale"
show_metadata_example_deps="avformat avutil" show_metadata_example_deps="avformat avutil"
transcode_aac_example_deps="avcodec avformat swresample" transcode_aac_example_deps="avcodec avformat swresample"

View file

@ -14,7 +14,7 @@ EXAMPLES-$(CONFIG_HW_DECODE_EXAMPLE) += hw_decode
EXAMPLES-$(CONFIG_MUX_EXAMPLE) += mux EXAMPLES-$(CONFIG_MUX_EXAMPLE) += mux
EXAMPLES-$(CONFIG_QSV_DECODE_EXAMPLE) += qsv_decode EXAMPLES-$(CONFIG_QSV_DECODE_EXAMPLE) += qsv_decode
EXAMPLES-$(CONFIG_REMUX_EXAMPLE) += remux 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_SCALING_VIDEO_EXAMPLE) += scaling_video
EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE) += show_metadata EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE) += show_metadata
EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac EXAMPLES-$(CONFIG_TRANSCODE_AAC_EXAMPLE) += transcode_aac

View file

@ -26,7 +26,7 @@ EXAMPLES=\
hw_decode \ hw_decode \
mux \ mux \
remux \ remux \
resampling_audio \ resample_audio \
scaling_video \ scaling_video \
show_metadata \ show_metadata \
transcode_aac \ transcode_aac \

View file

@ -21,7 +21,7 @@
*/ */
/** /**
* @example resampling_audio.c * @example resample_audio.c
* libswresample API use example. * libswresample API use example.
*/ */