2010-09-25 04:57:01 +03:00
|
|
|
/*
|
2012-05-22 21:57:06 +03:00
|
|
|
* Copyright (c) 2010 S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>
|
|
|
|
*
|
2010-09-25 04:57:01 +03:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avfilter.h"
|
2012-06-12 21:12:42 +03:00
|
|
|
#include "internal.h"
|
2010-09-25 04:57:01 +03:00
|
|
|
|
2012-07-02 21:13:40 +03:00
|
|
|
static int null_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-25 04:57:01 +03:00
|
|
|
|
|
|
|
AVFilter avfilter_asink_anullsink = {
|
|
|
|
.name = "anullsink",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Do absolutely nothing with the input audio."),
|
|
|
|
|
|
|
|
.priv_size = 0,
|
|
|
|
|
2011-11-05 16:39:24 +03:00
|
|
|
.inputs = (const AVFilterPad[]) {
|
2010-09-25 04:57:01 +03:00
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
|
|
|
.filter_samples = null_filter_samples,
|
|
|
|
},
|
|
|
|
{ .name = NULL},
|
|
|
|
},
|
2011-11-05 16:39:24 +03:00
|
|
|
.outputs = (const AVFilterPad[]) {{ .name = NULL }},
|
2010-09-25 04:57:01 +03:00
|
|
|
};
|