1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-29 12:54:10 +02:00
Files
FFmpeg/libavfilter/vf_null.c
T

51 lines
1.4 KiB
C
Raw Normal View History

2009-10-18 09:44:33 +00: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
*/
/**
* @file
* null video filter
2009-10-18 09:44:33 +00:00
*/
2012-08-06 16:49:32 +03:00
#include "libavutil/internal.h"
2009-10-18 09:44:33 +00:00
#include "avfilter.h"
#include "internal.h"
#include "video.h"
2009-10-18 09:44:33 +00:00
static const AVFilterPad avfilter_vf_null_inputs[] = {
{
2013-09-07 12:13:50 +00:00
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
},
{ NULL }
};
static const AVFilterPad avfilter_vf_null_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
},
{ NULL }
};
AVFilter ff_vf_null = {
2013-09-07 12:13:50 +00:00
.name = "null",
2009-10-27 00:43:45 +00:00
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
2013-09-07 12:13:50 +00:00
.inputs = avfilter_vf_null_inputs,
.outputs = avfilter_vf_null_outputs,
2009-10-18 09:44:33 +00:00
};