[FFmpeg-devel] [PATCH v3 3/3] avfilter/af_silencedetect: change mono default to 0 for bool
Paul B Mahol
onemda at gmail.com
Tue Oct 8 18:10:52 EEST 2019
I see nothing changed, it is already 0.
On 10/8/19, lance.lmwang at gmail.com <lance.lmwang at gmail.com> wrote:
> From: Limin Wang <lance.lmwang at gmail.com>
>
> Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
> ---
> libavfilter/af_silencedetect.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavfilter/af_silencedetect.c b/libavfilter/af_silencedetect.c
> index 3eb378d..ff3b219 100644
> --- a/libavfilter/af_silencedetect.c
> +++ b/libavfilter/af_silencedetect.c
> @@ -58,8 +58,8 @@ static const AVOption silencedetect_options[] = {
> { "noise", "set noise tolerance", OFFSET(noise),
> AV_OPT_TYPE_DOUBLE, {.dbl=0.001}, 0, DBL_MAX, FLAGS },
> { "d", "set minimum duration in seconds", OFFSET(duration),
> AV_OPT_TYPE_DURATION, {.i64=2000000}, 0, MAX_DURATION,FLAGS },
> { "duration", "set minimum duration in seconds", OFFSET(duration),
> AV_OPT_TYPE_DURATION, {.i64=2000000}, 0, MAX_DURATION,FLAGS },
> - { "mono", "check each channel separately", OFFSET(mono),
> AV_OPT_TYPE_BOOL, {.i64=0.}, 0, 1, FLAGS },
> - { "m", "check each channel separately", OFFSET(mono),
> AV_OPT_TYPE_BOOL, {.i64=0.}, 0, 1, FLAGS },
> + { "mono", "check each channel separately", OFFSET(mono),
> AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
> + { "m", "check each channel separately", OFFSET(mono),
> AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
> { NULL }
> };
>
> --
> 2.9.5
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".
More information about the ffmpeg-devel
mailing list