diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2023-01-15 16:44:25 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2023-02-11 17:49:01 +0100 |
commit | 3856f82ef9e70d6989ad2830ea7166e0a7508869 (patch) | |
tree | 36193aca0bd4a80b9442c3e9dc2990c69e32a902 /doc/examples | |
parent | cd8211527efbb9cad19db1c0d033da0749836e43 (diff) | |
download | ffmpeg-3856f82ef9e70d6989ad2830ea7166e0a7508869.tar.gz |
examples: rename scaling_video to scale_video
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/Makefile | 2 | ||||
-rw-r--r-- | doc/examples/Makefile.example | 2 | ||||
-rw-r--r-- | doc/examples/scale_video.c (renamed from doc/examples/scaling_video.c) | 2 |
3 files changed, 3 insertions, 3 deletions
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 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> |