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