2010-07-07 18:24:55 +00:00
|
|
|
/*
|
2010-11-28 10:22:58 +00:00
|
|
|
* Copyright (c) 2009 Stefano Sabatini
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-07-07 18:24:55 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-07-07 18:24:55 +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,
|
2010-07-07 18:24:55 +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
|
2010-07-07 18:24:55 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* pixdesc test filter
|
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2010-07-07 18:24:55 +00:00
|
|
|
#include "libavutil/pixdesc.h"
|
|
|
|
#include "avfilter.h"
|
2012-06-12 18:12:42 +00:00
|
|
|
#include "internal.h"
|
2012-05-30 09:20:32 +00:00
|
|
|
#include "video.h"
|
2010-07-07 18:24:55 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const AVPixFmtDescriptor *pix_desc;
|
|
|
|
uint16_t *line;
|
|
|
|
} PixdescTestContext;
|
|
|
|
|
|
|
|
static av_cold void uninit(AVFilterContext *ctx)
|
|
|
|
{
|
|
|
|
PixdescTestContext *priv = ctx->priv;
|
|
|
|
av_freep(&priv->line);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int config_props(AVFilterLink *inlink)
|
|
|
|
{
|
|
|
|
PixdescTestContext *priv = inlink->dst->priv;
|
|
|
|
|
|
|
|
priv->pix_desc = &av_pix_fmt_descriptors[inlink->format];
|
|
|
|
|
|
|
|
if (!(priv->line = av_malloc(sizeof(*priv->line) * inlink->w)))
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-08 15:29:42 +00:00
|
|
|
static int start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
|
2010-07-07 18:24:55 +00:00
|
|
|
{
|
|
|
|
PixdescTestContext *priv = inlink->dst->priv;
|
|
|
|
AVFilterLink *outlink = inlink->dst->outputs[0];
|
2012-07-15 09:16:53 +00:00
|
|
|
AVFilterBufferRef *outpicref, *for_next_filter;
|
2012-07-08 15:29:42 +00:00
|
|
|
int i, ret = 0;
|
|
|
|
|
|
|
|
outpicref = ff_get_video_buffer(outlink, AV_PERM_WRITE,
|
|
|
|
outlink->w, outlink->h);
|
|
|
|
if (!outpicref)
|
|
|
|
return AVERROR(ENOMEM);
|
2010-07-07 18:24:55 +00:00
|
|
|
|
2010-08-07 01:15:27 +00:00
|
|
|
avfilter_copy_buffer_ref_props(outpicref, picref);
|
2010-07-07 18:24:55 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
int h = outlink->h;
|
|
|
|
h = i == 1 || i == 2 ? h>>priv->pix_desc->log2_chroma_h : h;
|
|
|
|
if (outpicref->data[i]) {
|
|
|
|
uint8_t *data = outpicref->data[i] +
|
|
|
|
(outpicref->linesize[i] > 0 ? 0 : outpicref->linesize[i] * (h-1));
|
|
|
|
memset(data, 0, FFABS(outpicref->linesize[i]) * h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy palette */
|
2012-02-01 14:32:21 +00:00
|
|
|
if (priv->pix_desc->flags & PIX_FMT_PAL ||
|
|
|
|
priv->pix_desc->flags & PIX_FMT_PSEUDOPAL)
|
2010-07-07 18:24:55 +00:00
|
|
|
memcpy(outpicref->data[1], outpicref->data[1], 256*4);
|
|
|
|
|
2012-07-15 09:16:53 +00:00
|
|
|
for_next_filter = avfilter_ref_buffer(outpicref, ~0);
|
|
|
|
if (for_next_filter)
|
|
|
|
ret = ff_start_frame(outlink, for_next_filter);
|
|
|
|
else
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
|
2012-07-08 15:29:42 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
avfilter_unref_bufferp(&outpicref);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
outlink->out_buf = outpicref;
|
|
|
|
return 0;
|
2010-07-07 18:24:55 +00:00
|
|
|
}
|
|
|
|
|
2012-07-14 07:25:33 +00:00
|
|
|
static int draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
|
2010-07-07 18:24:55 +00:00
|
|
|
{
|
|
|
|
PixdescTestContext *priv = inlink->dst->priv;
|
2010-08-07 01:15:34 +00:00
|
|
|
AVFilterBufferRef *inpic = inlink->cur_buf;
|
|
|
|
AVFilterBufferRef *outpic = inlink->dst->outputs[0]->out_buf;
|
2010-07-07 18:24:55 +00:00
|
|
|
int i, c, w = inlink->w;
|
|
|
|
|
|
|
|
for (c = 0; c < priv->pix_desc->nb_components; c++) {
|
|
|
|
int w1 = c == 1 || c == 2 ? w>>priv->pix_desc->log2_chroma_w : w;
|
|
|
|
int h1 = c == 1 || c == 2 ? h>>priv->pix_desc->log2_chroma_h : h;
|
|
|
|
int y1 = c == 1 || c == 2 ? y>>priv->pix_desc->log2_chroma_h : y;
|
|
|
|
|
|
|
|
for (i = y1; i < y1 + h1; i++) {
|
2010-07-07 23:41:42 +00:00
|
|
|
av_read_image_line(priv->line,
|
2010-07-08 22:05:33 +00:00
|
|
|
inpic->data,
|
|
|
|
inpic->linesize,
|
|
|
|
priv->pix_desc,
|
|
|
|
0, i, c, w1, 0);
|
2010-07-07 18:24:55 +00:00
|
|
|
|
2010-07-07 23:41:42 +00:00
|
|
|
av_write_image_line(priv->line,
|
2010-07-08 22:05:33 +00:00
|
|
|
outpic->data,
|
|
|
|
outpic->linesize,
|
|
|
|
priv->pix_desc,
|
|
|
|
0, i, c, w1);
|
2010-07-07 18:24:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 07:25:33 +00:00
|
|
|
return ff_draw_slice(inlink->dst->outputs[0], y, h, slice_dir);
|
2010-07-07 18:24:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AVFilter avfilter_vf_pixdesctest = {
|
|
|
|
.name = "pixdesctest",
|
2010-09-24 20:41:14 +00:00
|
|
|
.description = NULL_IF_CONFIG_SMALL("Test pixel format definitions."),
|
2010-07-07 18:24:55 +00:00
|
|
|
|
|
|
|
.priv_size = sizeof(PixdescTestContext),
|
|
|
|
.uninit = uninit,
|
|
|
|
|
2012-07-21 16:45:52 +00:00
|
|
|
.inputs = (const AVFilterPad[]) {{ .name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.start_frame = start_frame,
|
|
|
|
.draw_slice = draw_slice,
|
|
|
|
.config_props = config_props,
|
|
|
|
.min_perms = AV_PERM_READ, },
|
|
|
|
{ .name = NULL}},
|
|
|
|
|
|
|
|
.outputs = (const AVFilterPad[]) {{ .name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO, },
|
|
|
|
{ .name = NULL}},
|
2010-07-07 18:24:55 +00:00
|
|
|
};
|