]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_swapuv.c
Merge commit '8d02579fae756336ae2a88d521e8cf2f6b436a2f'
[ffmpeg] / libavfilter / vf_swapuv.c
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/pixdesc.h"
27 #include "libavutil/version.h"
28 #include "avfilter.h"
29 #include "formats.h"
30 #include "internal.h"
31 #include "video.h"
32
33 static void do_swap(AVFrame *frame)
34 {
35     FFSWAP(uint8_t*,     frame->data[1],     frame->data[2]);
36     FFSWAP(int,          frame->linesize[1], frame->linesize[2]);
37     FFSWAP(AVBufferRef*, frame->buf[1],      frame->buf[2]);
38
39 #if FF_API_ERROR_FRAME
40 FF_DISABLE_DEPRECATION_WARNINGS
41     FFSWAP(uint64_t,     frame->error[1],    frame->error[2]);
42 FF_ENABLE_DEPRECATION_WARNINGS
43 #endif
44 }
45
46 static AVFrame *get_video_buffer(AVFilterLink *link, int w, int h)
47 {
48     AVFrame *picref = ff_default_get_video_buffer(link, w, h);
49     do_swap(picref);
50     return picref;
51 }
52
53 static int filter_frame(AVFilterLink *link, AVFrame *inpicref)
54 {
55     do_swap(inpicref);
56     return ff_filter_frame(link->dst->outputs[0], inpicref);
57 }
58
59 static int is_planar_yuv(const AVPixFmtDescriptor *desc)
60 {
61     int i;
62
63     if (desc->flags & ~(AV_PIX_FMT_FLAG_BE | AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_ALPHA) ||
64         desc->nb_components < 3 ||
65         (desc->comp[1].depth != desc->comp[2].depth))
66         return 0;
67     for (i = 0; i < desc->nb_components; i++) {
68         if (desc->comp[i].offset != 0 ||
69             desc->comp[i].shift != 0 ||
70             desc->comp[i].plane != i)
71             return 0;
72     }
73
74     return 1;
75 }
76
77 static int query_formats(AVFilterContext *ctx)
78 {
79     AVFilterFormats *formats = NULL;
80     int fmt, ret;
81
82     for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
83         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
84         if (is_planar_yuv(desc) && (ret = ff_add_format(&formats, fmt)) < 0)
85             return ret;
86     }
87
88     return ff_set_common_formats(ctx, formats);
89 }
90
91 static const AVFilterPad swapuv_inputs[] = {
92     {
93         .name             = "default",
94         .type             = AVMEDIA_TYPE_VIDEO,
95         .get_video_buffer = get_video_buffer,
96         .filter_frame     = filter_frame,
97     },
98     { NULL }
99 };
100
101 static const AVFilterPad swapuv_outputs[] = {
102     {
103         .name = "default",
104         .type = AVMEDIA_TYPE_VIDEO,
105     },
106     { NULL }
107 };
108
109 AVFilter ff_vf_swapuv = {
110     .name          = "swapuv",
111     .description   = NULL_IF_CONFIG_SMALL("Swap U and V components."),
112     .query_formats = query_formats,
113     .inputs        = swapuv_inputs,
114     .outputs       = swapuv_outputs,
115 };