]> git.sesse.net Git - ffmpeg/blob - libavfilter/v360.h
avfilter/vf_v360: remove uneeded array element
[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     NB_PROJECTIONS,
45 };
46
47 enum InterpMethod {
48     NEAREST,
49     BILINEAR,
50     BICUBIC,
51     LANCZOS,
52     NB_INTERP_METHODS,
53 };
54
55 enum Faces {
56     TOP_LEFT,
57     TOP_MIDDLE,
58     TOP_RIGHT,
59     BOTTOM_LEFT,
60     BOTTOM_MIDDLE,
61     BOTTOM_RIGHT,
62     NB_FACES,
63 };
64
65 enum Direction {
66     RIGHT,  ///< Axis +X
67     LEFT,   ///< Axis -X
68     UP,     ///< Axis +Y
69     DOWN,   ///< Axis -Y
70     FRONT,  ///< Axis -Z
71     BACK,   ///< Axis +Z
72     NB_DIRECTIONS,
73 };
74
75 enum Rotation {
76     ROT_0,
77     ROT_90,
78     ROT_180,
79     ROT_270,
80     NB_ROTATIONS,
81 };
82
83 enum RotationOrder {
84     YAW,
85     PITCH,
86     ROLL,
87     NB_RORDERS,
88 };
89
90 typedef struct XYRemap {
91     uint16_t u[4][4];
92     uint16_t v[4][4];
93     float ker[4][4];
94 } XYRemap;
95
96 typedef struct V360Context {
97     const AVClass *class;
98     int in, out;
99     int interp;
100     int width, height;
101     char *in_forder;
102     char *out_forder;
103     char *in_frot;
104     char *out_frot;
105     char *rorder;
106
107     int in_cubemap_face_order[6];
108     int out_cubemap_direction_order[6];
109     int in_cubemap_face_rotation[6];
110     int out_cubemap_face_rotation[6];
111     int rotation_order[3];
112
113     int in_stereo, out_stereo;
114
115     float in_pad, out_pad;
116
117     float yaw, pitch, roll;
118
119     int ih_flip, iv_flip;
120     int h_flip, v_flip, d_flip;
121     int in_transpose, out_transpose;
122
123     float h_fov, v_fov, d_fov;
124     float flat_range[2];
125
126     float rot_mat[3][3];
127
128     float input_mirror_modifier[2];
129     float output_mirror_modifier[3];
130
131     int pr_width[4], pr_height[4];
132
133     int in_offset_w[4], in_offset_h[4];
134     int out_offset_w[4], out_offset_h[4];
135
136     int planewidth[4], planeheight[4];
137     int inplanewidth[4], inplaneheight[4];
138     int uv_linesize[4];
139     int nb_planes;
140     int nb_allocated;
141     int elements;
142
143     uint16_t *u[4], *v[4];
144     int16_t *ker[4];
145     unsigned map[4];
146
147     void (*in_transform)(const struct V360Context *s,
148                          const float *vec, int width, int height,
149                          uint16_t us[4][4], uint16_t vs[4][4], float *du, float *dv);
150
151     void (*out_transform)(const struct V360Context *s,
152                           int i, int j, int width, int height,
153                           float *vec);
154
155     void (*calculate_kernel)(float du, float dv, const XYRemap *rmap,
156                              uint16_t *u, uint16_t *v, int16_t *ker);
157
158     int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
159
160     void (*remap_line)(uint8_t *dst, int width, const uint8_t *src, ptrdiff_t in_linesize,
161                        const uint16_t *u, const uint16_t *v, const int16_t *ker);
162 } V360Context;
163
164 void ff_v360_init(V360Context *s, int depth);
165 void ff_v360_init_x86(V360Context *s, int depth);
166
167 #endif /* AVFILTER_V360_H */