1 /*
2 * Copyright (c) 2009 Stefano Sabatini
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /**
22 * @file
23 * pixdesc test filter
24 */
25
26 #include "libavutil/common.h"
27 #include "libavutil/pixdesc.h"
28 #include "avfilter.h"
29 #include "internal.h"
30 #include "video.h"
31
32 typedef struct PixdescTestContext {
33 const AVPixFmtDescriptor *pix_desc;
34 uint32_t *line;
35 } PixdescTestContext;
36
uninit(AVFilterContext * ctx)37 static av_cold void uninit(AVFilterContext *ctx)
38 {
39 PixdescTestContext *priv = ctx->priv;
40 av_freep(&priv->line);
41 }
42
config_props(AVFilterLink * inlink)43 static int config_props(AVFilterLink *inlink)
44 {
45 PixdescTestContext *priv = inlink->dst->priv;
46
47 priv->pix_desc = av_pix_fmt_desc_get(inlink->format);
48
49 av_freep(&priv->line);
50 if (!(priv->line = av_malloc_array(sizeof(*priv->line), inlink->w)))
51 return AVERROR(ENOMEM);
52
53 return 0;
54 }
55
filter_frame(AVFilterLink * inlink,AVFrame * in)56 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
57 {
58 PixdescTestContext *priv = inlink->dst->priv;
59 AVFilterLink *outlink = inlink->dst->outputs[0];
60 AVFrame *out;
61 int i, c, w = inlink->w, h = inlink->h;
62 const int cw = AV_CEIL_RSHIFT(w, priv->pix_desc->log2_chroma_w);
63 const int ch = AV_CEIL_RSHIFT(h, priv->pix_desc->log2_chroma_h);
64
65 out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
66 if (!out) {
67 av_frame_free(&in);
68 return AVERROR(ENOMEM);
69 }
70
71 av_frame_copy_props(out, in);
72
73 for (i = 0; i < 4; i++) {
74 const int h1 = i == 1 || i == 2 ? ch : h;
75 if (out->data[i]) {
76 uint8_t *data = out->data[i] +
77 (out->linesize[i] > 0 ? 0 : out->linesize[i] * (h1-1));
78 memset(data, 0, FFABS(out->linesize[i]) * h1);
79 }
80 }
81
82 /* copy palette */
83 if (priv->pix_desc->flags & AV_PIX_FMT_FLAG_PAL)
84 memcpy(out->data[1], in->data[1], AVPALETTE_SIZE);
85
86 for (c = 0; c < priv->pix_desc->nb_components; c++) {
87 const int w1 = c == 1 || c == 2 ? cw : w;
88 const int h1 = c == 1 || c == 2 ? ch : h;
89
90 for (i = 0; i < h1; i++) {
91 av_read_image_line2(priv->line,
92 (void*)in->data,
93 in->linesize,
94 priv->pix_desc,
95 0, i, c, w1, 0, 4);
96
97 av_write_image_line2(priv->line,
98 out->data,
99 out->linesize,
100 priv->pix_desc,
101 0, i, c, w1, 4);
102 }
103 }
104
105 av_frame_free(&in);
106 return ff_filter_frame(outlink, out);
107 }
108
109 static const AVFilterPad avfilter_vf_pixdesctest_inputs[] = {
110 {
111 .name = "default",
112 .type = AVMEDIA_TYPE_VIDEO,
113 .filter_frame = filter_frame,
114 .config_props = config_props,
115 },
116 };
117
118 static const AVFilterPad avfilter_vf_pixdesctest_outputs[] = {
119 {
120 .name = "default",
121 .type = AVMEDIA_TYPE_VIDEO,
122 },
123 };
124
125 const AVFilter ff_vf_pixdesctest = {
126 .name = "pixdesctest",
127 .description = NULL_IF_CONFIG_SMALL("Test pixel format definitions."),
128 .priv_size = sizeof(PixdescTestContext),
129 .uninit = uninit,
130 FILTER_INPUTS(avfilter_vf_pixdesctest_inputs),
131 FILTER_OUTPUTS(avfilter_vf_pixdesctest_outputs),
132 };
133