2010-12-28 03:01:09 +02: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
|
|
|
|
* copy video filter
|
|
|
|
*/
|
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
#include "libavutil/imgutils.h"
|
2012-08-06 16:49:32 +03:00
|
|
|
#include "libavutil/internal.h"
|
2010-12-28 03:01:09 +02:00
|
|
|
#include "avfilter.h"
|
2012-06-12 21:12:42 +03:00
|
|
|
#include "internal.h"
|
2012-05-19 11:37:56 +03:00
|
|
|
#include "video.h"
|
2010-12-28 03:01:09 +02:00
|
|
|
|
2016-02-27 00:37:33 +02:00
|
|
|
static int query_formats(AVFilterContext *ctx)
|
|
|
|
{
|
|
|
|
AVFilterFormats *formats = NULL;
|
2021-01-16 22:11:57 +02:00
|
|
|
int ret;
|
2016-02-27 00:37:33 +02:00
|
|
|
|
2021-01-16 22:11:57 +02:00
|
|
|
ret = ff_formats_pixdesc_filter(&formats, 0,
|
|
|
|
AV_PIX_FMT_FLAG_HWACCEL);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2016-02-27 00:37:33 +02:00
|
|
|
return ff_set_common_formats(ctx, formats);
|
|
|
|
}
|
|
|
|
|
2012-11-28 10:41:07 +03:00
|
|
|
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
|
|
|
{
|
|
|
|
AVFilterLink *outlink = inlink->dst->outputs[0];
|
|
|
|
AVFrame *out = ff_get_video_buffer(outlink, in->width, in->height);
|
2019-10-01 13:45:29 +02:00
|
|
|
int ret;
|
2012-11-28 10:41:07 +03:00
|
|
|
|
2019-10-01 14:55:43 +02:00
|
|
|
if (!out) {
|
2019-10-01 13:45:29 +02:00
|
|
|
ret = AVERROR(ENOMEM);
|
2019-10-01 14:55:43 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
2019-10-01 13:45:29 +02:00
|
|
|
|
|
|
|
ret = av_frame_copy_props(out, in);
|
|
|
|
if (ret < 0)
|
|
|
|
goto fail;
|
|
|
|
ret = av_frame_copy(out, in);
|
|
|
|
if (ret < 0)
|
|
|
|
goto fail;
|
2012-11-28 10:41:07 +03:00
|
|
|
av_frame_free(&in);
|
|
|
|
return ff_filter_frame(outlink, out);
|
2019-10-01 13:45:29 +02:00
|
|
|
fail:
|
|
|
|
av_frame_free(&in);
|
|
|
|
av_frame_free(&out);
|
|
|
|
return ret;
|
2012-11-28 10:41:07 +03:00
|
|
|
}
|
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
static const AVFilterPad avfilter_vf_copy_inputs[] = {
|
|
|
|
{
|
2013-09-07 15:13:50 +03:00
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.filter_frame = filter_frame,
|
2012-07-24 16:14:01 +03:00
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad avfilter_vf_copy_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2021-04-19 18:33:56 +02:00
|
|
|
const AVFilter ff_vf_copy = {
|
2013-09-07 15:13:50 +03:00
|
|
|
.name = "copy",
|
2010-12-28 03:01:09 +02:00
|
|
|
.description = NULL_IF_CONFIG_SMALL("Copy the input video unchanged to the output."),
|
2013-09-07 15:13:50 +03:00
|
|
|
.inputs = avfilter_vf_copy_inputs,
|
|
|
|
.outputs = avfilter_vf_copy_outputs,
|
2016-02-27 00:37:33 +02:00
|
|
|
.query_formats = query_formats,
|
2010-12-28 03:01:09 +02:00
|
|
|
};
|