]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_transpose.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / vf_transpose.c
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
3  * Copyright (c) 2008 Vitor Sessak
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * transposition filter
25  * Based on MPlayer libmpcodecs/vf_rotate.c.
26  */
27
28 #include <stdio.h>
29
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/pixdesc.h"
33 #include "libavutil/imgutils.h"
34 #include "libavutil/internal.h"
35 #include "avfilter.h"
36 #include "formats.h"
37 #include "internal.h"
38 #include "video.h"
39
40 typedef enum {
41     TRANSPOSE_PT_TYPE_NONE,
42     TRANSPOSE_PT_TYPE_LANDSCAPE,
43     TRANSPOSE_PT_TYPE_PORTRAIT,
44 } PassthroughType;
45
46 typedef struct {
47     const AVClass *class;
48     int hsub, vsub;
49     int pixsteps[4];
50
51     /* 0    Rotate by 90 degrees counterclockwise and vflip. */
52     /* 1    Rotate by 90 degrees clockwise.                  */
53     /* 2    Rotate by 90 degrees counterclockwise.           */
54     /* 3    Rotate by 90 degrees clockwise and vflip.        */
55     int dir;
56     PassthroughType passthrough; ///< landscape passthrough mode enabled
57 } TransContext;
58
59 #define OFFSET(x) offsetof(TransContext, x)
60 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
61
62 static const AVOption transpose_options[] = {
63     { "dir", "set transpose direction", OFFSET(dir), AV_OPT_TYPE_INT, {.i64=0},  0, 7, FLAGS },
64
65     { "passthrough", "do not apply transposition if the input matches the specified geometry",
66       OFFSET(passthrough), AV_OPT_TYPE_INT, {.i64=TRANSPOSE_PT_TYPE_NONE},  0, INT_MAX, FLAGS, "passthrough" },
67     { "none",      "always apply transposition",   0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_NONE},      INT_MIN, INT_MAX, FLAGS, "passthrough" },
68     { "portrait",  "preserve portrait geometry",   0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_PORTRAIT},  INT_MIN, INT_MAX, FLAGS, "passthrough" },
69     { "landscape", "preserve landscape geometry",  0, AV_OPT_TYPE_CONST, {.i64=TRANSPOSE_PT_TYPE_LANDSCAPE}, INT_MIN, INT_MAX, FLAGS, "passthrough" },
70
71     { NULL },
72 };
73
74 AVFILTER_DEFINE_CLASS(transpose);
75
76 static av_cold int init(AVFilterContext *ctx, const char *args)
77 {
78     TransContext *trans = ctx->priv;
79     const char *shorthand[] = { "dir", "passthrough", NULL };
80
81     trans->class = &transpose_class;
82     av_opt_set_defaults(trans);
83
84     return av_opt_set_from_string(trans, args, shorthand, "=", ":");
85 }
86
87 static int query_formats(AVFilterContext *ctx)
88 {
89     enum AVPixelFormat pix_fmts[] = {
90         AV_PIX_FMT_ARGB,         AV_PIX_FMT_RGBA,
91         AV_PIX_FMT_ABGR,         AV_PIX_FMT_BGRA,
92         AV_PIX_FMT_RGB24,        AV_PIX_FMT_BGR24,
93         AV_PIX_FMT_RGB565BE,     AV_PIX_FMT_RGB565LE,
94         AV_PIX_FMT_RGB555BE,     AV_PIX_FMT_RGB555LE,
95         AV_PIX_FMT_BGR565BE,     AV_PIX_FMT_BGR565LE,
96         AV_PIX_FMT_BGR555BE,     AV_PIX_FMT_BGR555LE,
97         AV_PIX_FMT_GRAY16BE,     AV_PIX_FMT_GRAY16LE,
98         AV_PIX_FMT_YUV420P16LE,  AV_PIX_FMT_YUV420P16BE,
99         AV_PIX_FMT_YUV444P16LE,  AV_PIX_FMT_YUV444P16BE,
100         AV_PIX_FMT_NV12,         AV_PIX_FMT_NV21,
101         AV_PIX_FMT_RGB8,         AV_PIX_FMT_BGR8,
102         AV_PIX_FMT_RGB4_BYTE,    AV_PIX_FMT_BGR4_BYTE,
103         AV_PIX_FMT_YUV444P,      AV_PIX_FMT_YUVJ444P,
104         AV_PIX_FMT_YUV420P,      AV_PIX_FMT_YUVJ420P,
105         AV_PIX_FMT_YUV410P,
106         AV_PIX_FMT_YUVA420P,     AV_PIX_FMT_GRAY8,
107         AV_PIX_FMT_NONE
108     };
109
110     ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
111     return 0;
112 }
113
114 static int config_props_output(AVFilterLink *outlink)
115 {
116     AVFilterContext *ctx = outlink->src;
117     TransContext *trans = ctx->priv;
118     AVFilterLink *inlink = ctx->inputs[0];
119     const AVPixFmtDescriptor *desc_out = av_pix_fmt_desc_get(outlink->format);
120     const AVPixFmtDescriptor *desc_in  = av_pix_fmt_desc_get(inlink->format);
121
122     if (trans->dir&4) {
123         av_log(ctx, AV_LOG_WARNING,
124                "dir values greater than 3 are deprecated, use the passthrough option instead\n");
125         trans->dir &= 3;
126         trans->passthrough = TRANSPOSE_PT_TYPE_LANDSCAPE;
127     }
128
129     if ((inlink->w >= inlink->h && trans->passthrough == TRANSPOSE_PT_TYPE_LANDSCAPE) ||
130         (inlink->w <= inlink->h && trans->passthrough == TRANSPOSE_PT_TYPE_PORTRAIT)) {
131         av_log(ctx, AV_LOG_VERBOSE,
132                "w:%d h:%d -> w:%d h:%d (passthrough mode)\n",
133                inlink->w, inlink->h, inlink->w, inlink->h);
134         return 0;
135     } else {
136         trans->passthrough = TRANSPOSE_PT_TYPE_NONE;
137     }
138
139     trans->hsub = desc_in->log2_chroma_w;
140     trans->vsub = desc_in->log2_chroma_h;
141
142     av_image_fill_max_pixsteps(trans->pixsteps, NULL, desc_out);
143
144     outlink->w = inlink->h;
145     outlink->h = inlink->w;
146
147     if (inlink->sample_aspect_ratio.num){
148         outlink->sample_aspect_ratio = av_div_q((AVRational){1,1}, inlink->sample_aspect_ratio);
149     } else
150         outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
151
152     av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d dir:%d -> w:%d h:%d rotation:%s vflip:%d\n",
153            inlink->w, inlink->h, trans->dir, outlink->w, outlink->h,
154            trans->dir == 1 || trans->dir == 3 ? "clockwise" : "counterclockwise",
155            trans->dir == 0 || trans->dir == 3);
156     return 0;
157 }
158
159 static AVFilterBufferRef *get_video_buffer(AVFilterLink *inlink, int perms, int w, int h)
160 {
161     TransContext *trans = inlink->dst->priv;
162
163     return trans->passthrough ?
164         ff_null_get_video_buffer   (inlink, perms, w, h) :
165         ff_default_get_video_buffer(inlink, perms, w, h);
166 }
167
168 static int start_frame(AVFilterLink *inlink, AVFilterBufferRef *picref)
169 {
170     TransContext *trans = inlink->dst->priv;
171     AVFilterLink *outlink = inlink->dst->outputs[0];
172     AVFilterBufferRef *buf_out;
173
174     if (trans->passthrough)
175         return ff_null_start_frame(inlink, picref);
176
177     outlink->out_buf = ff_get_video_buffer(outlink, AV_PERM_WRITE,
178                                            outlink->w, outlink->h);
179     if (!outlink->out_buf)
180         return AVERROR(ENOMEM);
181
182     outlink->out_buf->pts = picref->pts;
183
184     if (picref->video->sample_aspect_ratio.num == 0) {
185         outlink->out_buf->video->sample_aspect_ratio = picref->video->sample_aspect_ratio;
186     } else {
187         outlink->out_buf->video->sample_aspect_ratio.num = picref->video->sample_aspect_ratio.den;
188         outlink->out_buf->video->sample_aspect_ratio.den = picref->video->sample_aspect_ratio.num;
189     }
190
191     buf_out = avfilter_ref_buffer(outlink->out_buf, ~0);
192     if (!buf_out)
193         return AVERROR(ENOMEM);
194     return ff_start_frame(outlink, buf_out);
195 }
196
197 static int end_frame(AVFilterLink *inlink)
198 {
199     TransContext *trans = inlink->dst->priv;
200     AVFilterBufferRef *inpic  = inlink->cur_buf;
201     AVFilterBufferRef *outpic = inlink->dst->outputs[0]->out_buf;
202     AVFilterLink *outlink = inlink->dst->outputs[0];
203     int plane, ret;
204
205     if (trans->passthrough)
206         return ff_null_end_frame(inlink);
207
208     for (plane = 0; outpic->data[plane]; plane++) {
209         int hsub = plane == 1 || plane == 2 ? trans->hsub : 0;
210         int vsub = plane == 1 || plane == 2 ? trans->vsub : 0;
211         int pixstep = trans->pixsteps[plane];
212         int inh  = inpic->video->h>>vsub;
213         int outw = outpic->video->w>>hsub;
214         int outh = outpic->video->h>>vsub;
215         uint8_t *out, *in;
216         int outlinesize, inlinesize;
217         int x, y;
218
219         out = outpic->data[plane]; outlinesize = outpic->linesize[plane];
220         in  = inpic ->data[plane]; inlinesize  = inpic ->linesize[plane];
221
222         if (trans->dir&1) {
223             in +=  inpic->linesize[plane] * (inh-1);
224             inlinesize *= -1;
225         }
226
227         if (trans->dir&2) {
228             out += outpic->linesize[plane] * (outh-1);
229             outlinesize *= -1;
230         }
231
232         for (y = 0; y < outh; y++) {
233             switch (pixstep) {
234             case 1:
235                 for (x = 0; x < outw; x++)
236                     out[x] = in[x*inlinesize + y];
237                 break;
238             case 2:
239                 for (x = 0; x < outw; x++)
240                     *((uint16_t *)(out + 2*x)) = *((uint16_t *)(in + x*inlinesize + y*2));
241                 break;
242             case 3:
243                 for (x = 0; x < outw; x++) {
244                     int32_t v = AV_RB24(in + x*inlinesize + y*3);
245                     AV_WB24(out + 3*x, v);
246                 }
247                 break;
248             case 4:
249                 for (x = 0; x < outw; x++)
250                     *((uint32_t *)(out + 4*x)) = *((uint32_t *)(in + x*inlinesize + y*4));
251                 break;
252             }
253             out += outlinesize;
254         }
255     }
256
257     if ((ret = ff_draw_slice(outlink, 0, outpic->video->h, 1)) < 0 ||
258         (ret = ff_end_frame(outlink)) < 0)
259         return ret;
260     return 0;
261 }
262
263 static int draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
264 {
265     TransContext *trans = inlink->dst->priv;
266
267     return trans->passthrough ? ff_null_draw_slice(inlink, y, h, slice_dir) : 0;
268 }
269
270 static const AVFilterPad avfilter_vf_transpose_inputs[] = {
271     {
272         .name        = "default",
273         .type        = AVMEDIA_TYPE_VIDEO,
274         .get_video_buffer= get_video_buffer,
275         .start_frame = start_frame,
276         .draw_slice  = draw_slice,
277         .end_frame   = end_frame,
278         .min_perms   = AV_PERM_READ,
279     },
280     { NULL }
281 };
282
283 static const AVFilterPad avfilter_vf_transpose_outputs[] = {
284     {
285         .name         = "default",
286         .config_props = config_props_output,
287         .type         = AVMEDIA_TYPE_VIDEO,
288     },
289     { NULL }
290 };
291
292 AVFilter avfilter_vf_transpose = {
293     .name      = "transpose",
294     .description = NULL_IF_CONFIG_SMALL("Transpose input video."),
295
296     .init = init,
297     .priv_size = sizeof(TransContext),
298
299     .query_formats = query_formats,
300
301     .inputs    = avfilter_vf_transpose_inputs,
302     .outputs   = avfilter_vf_transpose_outputs,
303     .priv_class = &transpose_class,
304 };