00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00024 #include "libavutil/internal.h"
00025 #include "avfilter.h"
00026 #include "internal.h"
00027 #include "video.h"
00028
00029 static const AVFilterPad avfilter_vf_copy_inputs[] = {
00030 {
00031 .name = "default",
00032 .type = AVMEDIA_TYPE_VIDEO,
00033 .get_video_buffer = ff_null_get_video_buffer,
00034 .rej_perms = ~0
00035 },
00036 { NULL }
00037 };
00038
00039 static const AVFilterPad avfilter_vf_copy_outputs[] = {
00040 {
00041 .name = "default",
00042 .type = AVMEDIA_TYPE_VIDEO,
00043 },
00044 { NULL }
00045 };
00046
00047 AVFilter avfilter_vf_copy = {
00048 .name = "copy",
00049 .description = NULL_IF_CONFIG_SMALL("Copy the input video unchanged to the output."),
00050
00051 .inputs = avfilter_vf_copy_inputs,
00052 .outputs = avfilter_vf_copy_outputs,
00053 };