]> git.sesse.net Git - ffmpeg/blob - libavfilter/v360.h
avfilter/vf_v360: add half equirectangular output format
[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 StereoFormats {
26     STEREO_2D,
27     STEREO_SBS,
28     STEREO_TB,
29     NB_STEREO_FMTS,
30 };
31
32 enum Projections {
33     EQUIRECTANGULAR,
34     CUBEMAP_3_2,
35     CUBEMAP_6_1,
36     EQUIANGULAR,
37     FLAT,
38     DUAL_FISHEYE,
39     BARREL,
40     CUBEMAP_1_6,
41     STEREOGRAPHIC,
42     MERCATOR,
43     BALL,
44     HAMMER,
45     SINUSOIDAL,
46     FISHEYE,
47     PANNINI,
48     CYLINDRICAL,
49     PERSPECTIVE,
50     TETRAHEDRON,
51     BARREL_SPLIT,
52     TSPYRAMID,
53     HEQUIRECTANGULAR,
54     NB_PROJECTIONS,
55 };
56
57 enum InterpMethod {
58     NEAREST,
59     BILINEAR,
60     BICUBIC,
61     LANCZOS,
62     SPLINE16,
63     GAUSSIAN,
64     NB_INTERP_METHODS,
65 };
66
67 enum Faces {
68     TOP_LEFT,
69     TOP_MIDDLE,
70     TOP_RIGHT,
71     BOTTOM_LEFT,
72     BOTTOM_MIDDLE,
73     BOTTOM_RIGHT,
74     NB_FACES,
75 };
76
77 enum Direction {
78     RIGHT,  ///< Axis +X
79     LEFT,   ///< Axis -X
80     UP,     ///< Axis +Y
81     DOWN,   ///< Axis -Y
82     FRONT,  ///< Axis -Z
83     BACK,   ///< Axis +Z
84     NB_DIRECTIONS,
85 };
86
87 enum Rotation {
88     ROT_0,
89     ROT_90,
90     ROT_180,
91     ROT_270,
92     NB_ROTATIONS,
93 };
94
95 enum RotationOrder {
96     YAW,
97     PITCH,
98     ROLL,
99     NB_RORDERS,
100 };
101
102 typedef struct XYRemap {
103     int16_t u[4][4];
104     int16_t v[4][4];
105     float ker[4][4];
106 } XYRemap;
107
108 typedef struct V360Context {
109     const AVClass *class;
110     int in, out;
111     int interp;
112     int alpha;
113     int width, height;
114     char *in_forder;
115     char *out_forder;
116     char *in_frot;
117     char *out_frot;
118     char *rorder;
119
120     int in_cubemap_face_order[6];
121     int out_cubemap_direction_order[6];
122     int in_cubemap_face_rotation[6];
123     int out_cubemap_face_rotation[6];
124     int rotation_order[3];
125
126     int in_stereo, out_stereo;
127
128     float in_pad, out_pad;
129     int fin_pad, fout_pad;
130
131     float yaw, pitch, roll;
132
133     int ih_flip, iv_flip;
134     int h_flip, v_flip, d_flip;
135     int in_transpose, out_transpose;
136
137     float h_fov, v_fov, d_fov;
138     float ih_fov, iv_fov, id_fov;
139     float flat_range[2];
140     float iflat_range[2];
141
142     float rot_mat[3][3];
143
144     float input_mirror_modifier[2];
145     float output_mirror_modifier[3];
146
147     int in_width, in_height;
148     int out_width, out_height;
149
150     int pr_width[4], pr_height[4];
151
152     int in_offset_w[4], in_offset_h[4];
153     int out_offset_w[4], out_offset_h[4];
154
155     int planewidth[4], planeheight[4];
156     int inplanewidth[4], inplaneheight[4];
157     int uv_linesize[4];
158     int nb_planes;
159     int nb_allocated;
160     int elements;
161     int mask_size;
162     int max_value;
163
164     int16_t *u[2], *v[2];
165     int16_t *ker[2];
166     uint8_t *mask;
167     unsigned map[4];
168
169     int (*in_transform)(const struct V360Context *s,
170                         const float *vec, int width, int height,
171                         int16_t us[4][4], int16_t vs[4][4], float *du, float *dv);
172
173     int (*out_transform)(const struct V360Context *s,
174                          int i, int j, int width, int height,
175                          float *vec);
176
177     void (*calculate_kernel)(float du, float dv, const XYRemap *rmap,
178                              int16_t *u, int16_t *v, int16_t *ker);
179
180     int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
181
182     void (*remap_line)(uint8_t *dst, int width, const uint8_t *const src, ptrdiff_t in_linesize,
183                        const int16_t *const u, const int16_t *const v, const int16_t *const ker);
184 } V360Context;
185
186 void ff_v360_init(V360Context *s, int depth);
187 void ff_v360_init_x86(V360Context *s, int depth);
188
189 #endif /* AVFILTER_V360_H */