1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

examples: rename remuxing to remux

This commit is contained in:
Stefano Sabatini 2023-01-15 13:03:47 +01:00
parent ab2ec8ef01
commit 0a69ca656b
4 changed files with 5 additions and 5 deletions

4
configure vendored
View File

@ -1725,7 +1725,7 @@ EXAMPLE_LIST="
hw_decode_example hw_decode_example
mux_example mux_example
qsv_decode_example qsv_decode_example
remuxing_example remux_example
resampling_audio_example resampling_audio_example
scaling_video_example scaling_video_example
show_metadata_example show_metadata_example
@ -3789,7 +3789,7 @@ 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"
qsv_decode_example_deps="avcodec avutil libmfx h264_qsv_decoder" qsv_decode_example_deps="avcodec avutil libmfx h264_qsv_decoder"
remuxing_example_deps="avcodec avformat avutil" remux_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"
show_metadata_example_deps="avformat avutil" show_metadata_example_deps="avformat avutil"

View File

@ -13,7 +13,7 @@ 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_QSV_DECODE_EXAMPLE) += qsv_decode EXAMPLES-$(CONFIG_QSV_DECODE_EXAMPLE) += qsv_decode
EXAMPLES-$(CONFIG_REMUXING_EXAMPLE) += remuxing EXAMPLES-$(CONFIG_REMUX_EXAMPLE) += remux
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
EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE) += show_metadata EXAMPLES-$(CONFIG_SHOW_METADATA_EXAMPLE) += show_metadata

View File

@ -25,7 +25,7 @@ EXAMPLES=\
extract_mvs \ extract_mvs \
hw_decode \ hw_decode \
mux \ mux \
remuxing \ remux \
resampling_audio \ resampling_audio \
scaling_video \ scaling_video \
show_metadata \ show_metadata \

View File

@ -25,7 +25,7 @@
* libavformat/libavcodec demuxing and muxing API example. * libavformat/libavcodec demuxing and muxing API example.
* *
* Remux streams from one container format to another. * Remux streams from one container format to another.
* @example remuxing.c * @example remux.c
*/ */
#include <libavutil/timestamp.h> #include <libavutil/timestamp.h>