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