summaryrefslogtreecommitdiff
path: root/libavfilter/af_silencedetect.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-07-13 22:22:12 +0000
committerPaul B Mahol <onemda@gmail.com>2013-07-13 22:23:09 +0000
commitf486d7e924ff684039181d8f0f37a360b846e379 (patch)
tree2dc22571aee0b99e3888a1ae9ba4b00015299dd3 /libavfilter/af_silencedetect.c
parent099dfcaa0eef03a779d990b1802206db6d1a35af (diff)
lavfi/silencedetect: unbreak for unknown channel layouts
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_silencedetect.c')
-rw-r--r--libavfilter/af_silencedetect.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/af_silencedetect.c b/libavfilter/af_silencedetect.c
index eb4718b268..0ae3c24346 100644
--- a/libavfilter/af_silencedetect.c
+++ b/libavfilter/af_silencedetect.c
@@ -25,7 +25,6 @@
#include <float.h> /* DBL_MAX */
-#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "libavutil/timestamp.h"
#include "audio.h"
@@ -64,7 +63,7 @@ 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 nb_channels = inlink->channels;
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;