2009-10-22 22:00:33 +00:00
|
|
|
/*
|
2010-11-28 10:22:58 +00:00
|
|
|
* Copyright (c) 2007 Bobby Bingham
|
2009-10-22 22:00:33 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2009-10-22 22:00:33 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2009-10-22 22:00:33 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2009-10-22 22:00:33 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2009-10-22 22:00:33 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2009-10-22 22:00:33 +00:00
|
|
|
* video vertical flip filter
|
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/internal.h"
|
2010-01-31 16:33:29 +00:00
|
|
|
#include "libavutil/pixdesc.h"
|
2009-10-22 22:00:33 +00:00
|
|
|
#include "avfilter.h"
|
2012-06-12 18:12:42 +00:00
|
|
|
#include "internal.h"
|
2012-05-19 08:37:56 +00:00
|
|
|
#include "video.h"
|
2009-10-22 22:00:33 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int vsub; ///< vertical chroma subsampling
|
|
|
|
} FlipContext;
|
|
|
|
|
|
|
|
static int config_input(AVFilterLink *link)
|
|
|
|
{
|
|
|
|
FlipContext *flip = link->dst->priv;
|
2012-10-06 11:29:37 +00:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(link->format);
|
2009-10-22 22:00:33 +00:00
|
|
|
|
2012-10-06 11:29:37 +00:00
|
|
|
flip->vsub = desc->log2_chroma_h;
|
2009-10-22 22:00:33 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-07 01:15:19 +00:00
|
|
|
static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms,
|
2009-10-22 22:00:33 +00:00
|
|
|
int w, int h)
|
|
|
|
{
|
|
|
|
FlipContext *flip = link->dst->priv;
|
2010-12-27 15:10:21 +00:00
|
|
|
AVFilterBufferRef *picref;
|
2009-10-22 22:00:33 +00:00
|
|
|
int i;
|
|
|
|
|
2010-12-27 15:10:21 +00:00
|
|
|
if (!(perms & AV_PERM_NEG_LINESIZES))
|
2012-05-19 08:37:56 +00:00
|
|
|
return ff_default_get_video_buffer(link, perms, w, h);
|
2009-10-22 22:00:33 +00:00
|
|
|
|
2012-05-30 08:31:48 +00:00
|
|
|
picref = ff_get_video_buffer(link->dst->outputs[0], perms, w, h);
|
2012-07-15 09:16:53 +00:00
|
|
|
if (!picref)
|
|
|
|
return NULL;
|
|
|
|
|
2009-12-08 17:08:49 +00:00
|
|
|
for (i = 0; i < 4; i ++) {
|
|
|
|
int vsub = i == 1 || i == 2 ? flip->vsub : 0;
|
|
|
|
|
2009-10-22 22:00:33 +00:00
|
|
|
if (picref->data[i]) {
|
2009-12-08 17:08:49 +00:00
|
|
|
picref->data[i] += ((h >> vsub)-1) * picref->linesize[i];
|
2009-10-22 22:00:33 +00:00
|
|
|
picref->linesize[i] = -picref->linesize[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return picref;
|
|
|
|
}
|
|
|
|
|
2012-07-08 15:29:42 +00:00
|
|
|
static int start_frame(AVFilterLink *link, AVFilterBufferRef *inpicref)
|
2009-10-22 22:00:33 +00:00
|
|
|
{
|
|
|
|
FlipContext *flip = link->dst->priv;
|
2010-12-19 18:17:11 +00:00
|
|
|
AVFilterBufferRef *outpicref = avfilter_ref_buffer(inpicref, ~0);
|
2009-10-22 22:00:33 +00:00
|
|
|
int i;
|
|
|
|
|
2012-07-15 09:16:53 +00:00
|
|
|
if (!outpicref)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
2009-12-08 17:08:49 +00:00
|
|
|
for (i = 0; i < 4; i ++) {
|
|
|
|
int vsub = i == 1 || i == 2 ? flip->vsub : 0;
|
|
|
|
|
2010-12-19 18:17:11 +00:00
|
|
|
if (outpicref->data[i]) {
|
|
|
|
outpicref->data[i] += ((link->h >> vsub)-1) * outpicref->linesize[i];
|
|
|
|
outpicref->linesize[i] = -outpicref->linesize[i];
|
2009-10-22 22:00:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-08 15:29:42 +00:00
|
|
|
return ff_start_frame(link->dst->outputs[0], outpicref);
|
2009-10-22 22:00:33 +00:00
|
|
|
}
|
|
|
|
|
2012-07-14 07:25:33 +00:00
|
|
|
static int draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
|
2009-10-22 22:00:33 +00:00
|
|
|
{
|
|
|
|
AVFilterContext *ctx = link->dst;
|
|
|
|
|
2012-07-14 07:25:33 +00:00
|
|
|
return ff_draw_slice(ctx->outputs[0], link->h - (y+h), h, -1 * slice_dir);
|
2009-10-22 22:00:33 +00:00
|
|
|
}
|
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
static const AVFilterPad avfilter_vf_vflip_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.get_video_buffer = get_video_buffer,
|
|
|
|
.start_frame = start_frame,
|
|
|
|
.draw_slice = draw_slice,
|
|
|
|
.config_props = config_input,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad avfilter_vf_vflip_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2009-10-22 22:00:33 +00:00
|
|
|
AVFilter avfilter_vf_vflip = {
|
|
|
|
.name = "vflip",
|
2009-10-27 00:43:45 +00:00
|
|
|
.description = NULL_IF_CONFIG_SMALL("Flip the input video vertically."),
|
|
|
|
|
2009-10-22 22:00:33 +00:00
|
|
|
.priv_size = sizeof(FlipContext),
|
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
.inputs = avfilter_vf_vflip_inputs,
|
|
|
|
.outputs = avfilter_vf_vflip_outputs,
|
2009-10-22 22:00:33 +00:00
|
|
|
};
|