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