libavfilter/asink_anullsink.c
f0a55438
 /*
77ba8af0
  * Copyright (c) 2010 S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>
  *
f0a55438
  * 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
  */
 
1d9c2dc8
 #include "libavutil/internal.h"
f0a55438
 #include "avfilter.h"
9d0bfc50
 #include "internal.h"
f0a55438
 
cd991462
 static int null_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
 {
     return 0;
 }
f0a55438
 
 AVFilter avfilter_asink_anullsink = {
     .name        = "anullsink",
     .description = NULL_IF_CONFIG_SMALL("Do absolutely nothing with the input audio."),
 
     .priv_size = 0,
 
5af7daab
     .inputs    = (const AVFilterPad[]) {
f0a55438
         {
             .name            = "default",
             .type            = AVMEDIA_TYPE_AUDIO,
             .filter_samples  = null_filter_samples,
         },
         { .name = NULL},
     },
1fce361d
     .outputs   = NULL,
f0a55438
 };