1 /*
2 * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
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 * swap UV filter
24 */
25
26 #include "libavutil/opt.h"
27 #include "libavutil/pixdesc.h"
28 #include "avfilter.h"
29 #include "formats.h"
30 #include "internal.h"
31 #include "video.h"
32
33 typedef struct SwapUVContext {
34 const AVClass *class;
35 } SwapUVContext;
36
37 static const AVOption swapuv_options[] = {
38 { NULL }
39 };
40
41 AVFILTER_DEFINE_CLASS(swapuv);
42
do_swap(AVFrame * frame)43 static void do_swap(AVFrame *frame)
44 {
45 FFSWAP(uint8_t*, frame->data[1], frame->data[2]);
46 FFSWAP(int, frame->linesize[1], frame->linesize[2]);
47 FFSWAP(AVBufferRef*, frame->buf[1], frame->buf[2]);
48 }
49
get_video_buffer(AVFilterLink * link,int w,int h)50 static AVFrame *get_video_buffer(AVFilterLink *link, int w, int h)
51 {
52 AVFrame *picref = ff_default_get_video_buffer(link, w, h);
53 do_swap(picref);
54 return picref;
55 }
56
filter_frame(AVFilterLink * link,AVFrame * inpicref)57 static int filter_frame(AVFilterLink *link, AVFrame *inpicref)
58 {
59 do_swap(inpicref);
60 return ff_filter_frame(link->dst->outputs[0], inpicref);
61 }
62
is_planar_yuv(const AVPixFmtDescriptor * desc)63 static int is_planar_yuv(const AVPixFmtDescriptor *desc)
64 {
65 int i;
66
67 if (desc->flags & ~(AV_PIX_FMT_FLAG_BE | AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_ALPHA) ||
68 desc->nb_components < 3 ||
69 (desc->comp[1].depth != desc->comp[2].depth))
70 return 0;
71 for (i = 0; i < desc->nb_components; i++) {
72 if (desc->comp[i].offset != 0 ||
73 desc->comp[i].shift != 0 ||
74 desc->comp[i].plane != i)
75 return 0;
76 }
77
78 return 1;
79 }
80
query_formats(AVFilterContext * ctx)81 static int query_formats(AVFilterContext *ctx)
82 {
83 AVFilterFormats *formats = NULL;
84 int fmt, ret;
85
86 for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
87 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
88 if (is_planar_yuv(desc) && (ret = ff_add_format(&formats, fmt)) < 0)
89 return ret;
90 }
91
92 return ff_set_common_formats(ctx, formats);
93 }
94
95 static const AVFilterPad swapuv_inputs[] = {
96 {
97 .name = "default",
98 .type = AVMEDIA_TYPE_VIDEO,
99 .get_buffer.video = get_video_buffer,
100 .filter_frame = filter_frame,
101 },
102 };
103
104 static const AVFilterPad swapuv_outputs[] = {
105 {
106 .name = "default",
107 .type = AVMEDIA_TYPE_VIDEO,
108 },
109 };
110
111 const AVFilter ff_vf_swapuv = {
112 .name = "swapuv",
113 .description = NULL_IF_CONFIG_SMALL("Swap U and V components."),
114 .priv_size = sizeof(SwapUVContext),
115 .priv_class = &swapuv_class,
116 FILTER_INPUTS(swapuv_inputs),
117 FILTER_OUTPUTS(swapuv_outputs),
118 FILTER_QUERY_FUNC(query_formats),
119 .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
120 };
121