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