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
 
7e350379
 static int null_filter_frame(AVFilterLink *link, AVFrame *frame)
cd991462
 {
7e350379
     av_frame_free(&frame);
cd991462
     return 0;
 }
f0a55438
 
568c70e7
 static const AVFilterPad avfilter_asink_anullsink_inputs[] = {
     {
         .name           = "default",
         .type           = AVMEDIA_TYPE_AUDIO,
cd7febd3
         .filter_frame   = null_filter_frame,
568c70e7
     },
     { NULL },
 };
 
cd43ca04
 AVFilter ff_asink_anullsink = {
f0a55438
     .name        = "anullsink",
     .description = NULL_IF_CONFIG_SMALL("Do absolutely nothing with the input audio."),
 
     .priv_size = 0,
 
568c70e7
     .inputs    = avfilter_asink_anullsink_inputs,
1fce361d
     .outputs   = NULL,
f0a55438
 };