mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
a05a44e205
* commit '7e350379f87e7f74420b4813170fe808e2313911':
lavfi: switch to AVFrame.
Conflicts:
doc/filters.texi
libavfilter/af_ashowinfo.c
libavfilter/audio.c
libavfilter/avfilter.c
libavfilter/avfilter.h
libavfilter/buffersink.c
libavfilter/buffersrc.c
libavfilter/buffersrc.h
libavfilter/f_select.c
libavfilter/f_setpts.c
libavfilter/fifo.c
libavfilter/split.c
libavfilter/src_movie.c
libavfilter/version.h
libavfilter/vf_aspect.c
libavfilter/vf_bbox.c
libavfilter/vf_blackframe.c
libavfilter/vf_delogo.c
libavfilter/vf_drawbox.c
libavfilter/vf_drawtext.c
libavfilter/vf_fade.c
libavfilter/vf_fieldorder.c
libavfilter/vf_fps.c
libavfilter/vf_frei0r.c
libavfilter/vf_gradfun.c
libavfilter/vf_hqdn3d.c
libavfilter/vf_lut.c
libavfilter/vf_overlay.c
libavfilter/vf_pad.c
libavfilter/vf_scale.c
libavfilter/vf_showinfo.c
libavfilter/vf_transpose.c
libavfilter/vf_vflip.c
libavfilter/vf_yadif.c
libavfilter/video.c
libavfilter/vsrc_testsrc.c
libavfilter/yadif.h
Following are notes about the merge authorship and various technical details.
Michael Niedermayer:
* Main merge operation, notably avfilter.c and video.c
* Switch to AVFrame:
- afade
- anullsrc
- apad
- aresample
- blackframe
- deshake
- idet
- il
- mandelbrot
- mptestsrc
- noise
- setfield
- smartblur
- tinterlace
* various merge changes and fixes in:
- ashowinfo
- blackdetect
- field
- fps
- select
- testsrc
- yadif
Nicolas George:
* Switch to AVFrame:
- make rawdec work with refcounted frames. Adapted from commit
759001c534
by Anton Khirnov.
Also, fix the use of || instead of | in a flags check.
- make buffer sink and src, audio and video work all together
Clément Bœsch:
* Switch to AVFrame:
- aevalsrc
- alphaextract
- blend
- cellauto
- colormatrix
- concat
- earwax
- ebur128
- edgedetect
- geq
- histeq
- histogram
- hue
- kerndeint
- life
- movie
- mp (with the help of Michael)
- overlay
- pad
- pan
- pp
- pp
- removelogo
- sendcmd
- showspectrum
- showwaves
- silencedetect
- stereo3d
- subtitles
- super2xsai
- swapuv
- thumbnail
- tile
Hendrik Leppkes:
* Switch to AVFrame:
- aconvert
- amerge
- asetnsamples
- atempo
- biquads
Matthieu Bouron:
* Switch to AVFrame
- alphamerge
- decimate
- volumedetect
Stefano Sabatini:
* Switch to AVFrame:
- astreamsync
- flite
- framestep
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
Signed-off-by: Clément Bœsch <ubitux@gmail.com>
Signed-off-by: Hendrik Leppkes <h.leppkes@gmail.com>
Signed-off-by: Matthieu Bouron <matthieu.bouron@gmail.com>
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Merged-by: Michael Niedermayer <michaelni@gmx.at>
185 lines
6.7 KiB
C
185 lines
6.7 KiB
C
/*
|
|
* Copyright (c) 2012 Clément Bœsch <ubitux@gmail.com>
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* Audio silence detector
|
|
*/
|
|
|
|
#include <float.h> /* DBL_MAX */
|
|
|
|
#include "libavutil/channel_layout.h"
|
|
#include "libavutil/opt.h"
|
|
#include "libavutil/timestamp.h"
|
|
#include "audio.h"
|
|
#include "formats.h"
|
|
#include "avfilter.h"
|
|
#include "internal.h"
|
|
|
|
typedef struct {
|
|
const AVClass *class;
|
|
double noise; ///< noise amplitude ratio
|
|
double duration; ///< minimum duration of silence until notification
|
|
int64_t nb_null_samples; ///< current number of continuous zero samples
|
|
int64_t start; ///< if silence is detected, this value contains the time of the first zero sample
|
|
int last_sample_rate; ///< last sample rate to check for sample rate changes
|
|
} SilenceDetectContext;
|
|
|
|
#define OFFSET(x) offsetof(SilenceDetectContext, x)
|
|
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM
|
|
static const AVOption silencedetect_options[] = {
|
|
{ "n", "set noise tolerance", OFFSET(noise), AV_OPT_TYPE_DOUBLE, {.dbl=0.001}, 0, DBL_MAX, FLAGS },
|
|
{ "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_DOUBLE, {.dbl=2.}, 0, 24*60*60, FLAGS },
|
|
{ "duration", "set minimum duration in seconds", OFFSET(duration), AV_OPT_TYPE_DOUBLE, {.dbl=2.}, 0, 24*60*60, FLAGS },
|
|
{ NULL },
|
|
};
|
|
|
|
AVFILTER_DEFINE_CLASS(silencedetect);
|
|
|
|
static av_cold int init(AVFilterContext *ctx, const char *args)
|
|
{
|
|
int ret;
|
|
SilenceDetectContext *silence = ctx->priv;
|
|
|
|
silence->class = &silencedetect_class;
|
|
av_opt_set_defaults(silence);
|
|
|
|
if ((ret = av_set_options_string(silence, args, "=", ":")) < 0)
|
|
return ret;
|
|
|
|
av_opt_free(silence);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static char *get_metadata_val(AVFrame *insamples, const char *key)
|
|
{
|
|
AVDictionaryEntry *e = av_dict_get(insamples->metadata, key, NULL, 0);
|
|
return e && e->value ? e->value : NULL;
|
|
}
|
|
|
|
static int filter_frame(AVFilterLink *inlink, AVFrame *insamples)
|
|
{
|
|
int i;
|
|
SilenceDetectContext *silence = inlink->dst->priv;
|
|
const int nb_channels = av_get_channel_layout_nb_channels(inlink->channel_layout);
|
|
const int srate = inlink->sample_rate;
|
|
const int nb_samples = insamples->nb_samples * nb_channels;
|
|
const int64_t nb_samples_notify = srate * silence->duration * nb_channels;
|
|
|
|
// scale number of null samples to the new sample rate
|
|
if (silence->last_sample_rate && silence->last_sample_rate != srate)
|
|
silence->nb_null_samples =
|
|
srate * silence->nb_null_samples / silence->last_sample_rate;
|
|
silence->last_sample_rate = srate;
|
|
|
|
// TODO: support more sample formats
|
|
// TODO: document metadata
|
|
if (insamples->format == AV_SAMPLE_FMT_DBL) {
|
|
double *p = (double *)insamples->data[0];
|
|
|
|
for (i = 0; i < nb_samples; i++, p++) {
|
|
if (*p < silence->noise && *p > -silence->noise) {
|
|
if (!silence->start) {
|
|
silence->nb_null_samples++;
|
|
if (silence->nb_null_samples >= nb_samples_notify) {
|
|
silence->start = insamples->pts - (int64_t)(silence->duration / av_q2d(inlink->time_base) + .5);
|
|
av_dict_set(&insamples->metadata, "lavfi.silence_start",
|
|
av_ts2timestr(silence->start, &inlink->time_base), 0);
|
|
av_log(silence, AV_LOG_INFO, "silence_start: %s\n",
|
|
get_metadata_val(insamples, "lavfi.silence_start"));
|
|
}
|
|
}
|
|
} else {
|
|
if (silence->start) {
|
|
av_dict_set(&insamples->metadata, "lavfi.silence_end",
|
|
av_ts2timestr(insamples->pts, &inlink->time_base), 0);
|
|
av_dict_set(&insamples->metadata, "lavfi.silence_duration",
|
|
av_ts2timestr(insamples->pts - silence->start, &inlink->time_base), 0);
|
|
av_log(silence, AV_LOG_INFO,
|
|
"silence_end: %s | silence_duration: %s\n",
|
|
get_metadata_val(insamples, "lavfi.silence_end"),
|
|
get_metadata_val(insamples, "lavfi.silence_duration"));
|
|
}
|
|
silence->nb_null_samples = silence->start = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
return ff_filter_frame(inlink->dst->outputs[0], insamples);
|
|
}
|
|
|
|
static int query_formats(AVFilterContext *ctx)
|
|
{
|
|
AVFilterFormats *formats = NULL;
|
|
AVFilterChannelLayouts *layouts = NULL;
|
|
static const enum AVSampleFormat sample_fmts[] = {
|
|
AV_SAMPLE_FMT_DBL,
|
|
AV_SAMPLE_FMT_NONE
|
|
};
|
|
|
|
layouts = ff_all_channel_layouts();
|
|
if (!layouts)
|
|
return AVERROR(ENOMEM);
|
|
ff_set_common_channel_layouts(ctx, layouts);
|
|
|
|
formats = ff_make_format_list(sample_fmts);
|
|
if (!formats)
|
|
return AVERROR(ENOMEM);
|
|
ff_set_common_formats(ctx, formats);
|
|
|
|
formats = ff_all_samplerates();
|
|
if (!formats)
|
|
return AVERROR(ENOMEM);
|
|
ff_set_common_samplerates(ctx, formats);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const AVFilterPad silencedetect_inputs[] = {
|
|
{
|
|
.name = "default",
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
|
.get_audio_buffer = ff_null_get_audio_buffer,
|
|
.filter_frame = filter_frame,
|
|
},
|
|
{ NULL }
|
|
};
|
|
|
|
static const AVFilterPad silencedetect_outputs[] = {
|
|
{
|
|
.name = "default",
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
|
},
|
|
{ NULL }
|
|
};
|
|
|
|
AVFilter avfilter_af_silencedetect = {
|
|
.name = "silencedetect",
|
|
.description = NULL_IF_CONFIG_SMALL("Detect silence."),
|
|
.priv_size = sizeof(SilenceDetectContext),
|
|
.init = init,
|
|
.query_formats = query_formats,
|
|
.inputs = silencedetect_inputs,
|
|
.outputs = silencedetect_outputs,
|
|
.priv_class = &silencedetect_class,
|
|
};
|