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