]> git.sesse.net Git - ffmpeg/blob - libavfilter/v360.h
avfilter/vf_v360: support transposed input/output
[ffmpeg] / libavfilter / v360.h
1 /*
2  * Copyright (c) 2019 Eugene Lyapustin
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 #ifndef AVFILTER_V360_H
22 #define AVFILTER_V360_H
23 #include "avfilter.h"
24
25 enum Projections {
26     EQUIRECTANGULAR,
27     CUBEMAP_3_2,
28     CUBEMAP_6_1,
29     EQUIANGULAR,
30     FLAT,
31     DUAL_FISHEYE,
32     BARREL,
33     CUBEMAP_1_6,
34     NB_PROJECTIONS,
35 };
36
37 enum InterpMethod {
38     NEAREST,
39     BILINEAR,
40     BICUBIC,
41     LANCZOS,
42     NB_INTERP_METHODS,
43 };
44
45 enum Faces {
46     TOP_LEFT,
47     TOP_MIDDLE,
48     TOP_RIGHT,
49     BOTTOM_LEFT,
50     BOTTOM_MIDDLE,
51     BOTTOM_RIGHT,
52     NB_FACES,
53 };
54
55 enum Direction {
56     RIGHT,  ///< Axis +X
57     LEFT,   ///< Axis -X
58     UP,     ///< Axis +Y
59     DOWN,   ///< Axis -Y
60     FRONT,  ///< Axis -Z
61     BACK,   ///< Axis +Z
62     NB_DIRECTIONS,
63 };
64
65 enum Rotation {
66     ROT_0,
67     ROT_90,
68     ROT_180,
69     ROT_270,
70     NB_ROTATIONS,
71 };
72
73 enum RotationOrder {
74     YAW,
75     PITCH,
76     ROLL,
77     NB_RORDERS,
78 };
79
80 typedef struct V360Context {
81     const AVClass *class;
82     int in, out;
83     int interp;
84     int width, height;
85     char *in_forder;
86     char *out_forder;
87     char *in_frot;
88     char *out_frot;
89     char *rorder;
90
91     int in_cubemap_face_order[6];
92     int out_cubemap_direction_order[6];
93     int in_cubemap_face_rotation[6];
94     int out_cubemap_face_rotation[6];
95     int rotation_order[3];
96
97     float in_pad, out_pad;
98
99     float yaw, pitch, roll;
100
101     int h_flip, v_flip, d_flip;
102     int in_transpose, out_transpose;
103
104     float h_fov, v_fov;
105     float flat_range[3];
106
107     int planewidth[4], planeheight[4];
108     int inplanewidth[4], inplaneheight[4];
109     int nb_planes;
110     int nb_allocated;
111
112     uint16_t *u[4], *v[4];
113     int16_t *ker[4];
114     unsigned map[4];
115
116     int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
117
118     void (*remap_line)(uint8_t *dst, int width, const uint8_t *src, ptrdiff_t in_linesize,
119                        const uint16_t *u, const uint16_t *v, const int16_t *ker);
120 } V360Context;
121
122 void ff_v360_init(V360Context *s, int depth);
123 void ff_v360_init_x86(V360Context *s, int depth);
124
125 #endif /* AVFILTER_V360_H */