]> git.sesse.net Git - ffmpeg/blob - libavfilter/v360.h
avfilter/vf_v360: x86 SIMD for interpolations
[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     NB_PROJECTIONS,
35 };
36
37 enum InterpMethod {
38     NEAREST,
39     BILINEAR,
40     BICUBIC,
41     LANCZOS,
42     NB_INTERP_METHODS,
43 };
44
45 enum Faces {
46     TOP_LEFT,
47     TOP_MIDDLE,
48     TOP_RIGHT,
49     BOTTOM_LEFT,
50     BOTTOM_MIDDLE,
51     BOTTOM_RIGHT,
52     NB_FACES,
53 };
54
55 enum Direction {
56     RIGHT,  ///< Axis +X
57     LEFT,   ///< Axis -X
58     UP,     ///< Axis +Y
59     DOWN,   ///< Axis -Y
60     FRONT,  ///< Axis -Z
61     BACK,   ///< Axis +Z
62     NB_DIRECTIONS,
63 };
64
65 enum Rotation {
66     ROT_0,
67     ROT_90,
68     ROT_180,
69     ROT_270,
70     NB_ROTATIONS,
71 };
72
73 typedef struct V360Context {
74     const AVClass *class;
75     int in, out;
76     int interp;
77     int width, height;
78     char* in_forder;
79     char* out_forder;
80     char* in_frot;
81     char* out_frot;
82
83     int in_cubemap_face_order[6];
84     int out_cubemap_direction_order[6];
85     int in_cubemap_face_rotation[6];
86     int out_cubemap_face_rotation[6];
87
88     float in_pad, out_pad;
89
90     float yaw, pitch, roll;
91
92     int h_flip, v_flip, d_flip;
93
94     float h_fov, v_fov;
95     float flat_range[3];
96
97     int planewidth[4], planeheight[4];
98     int inplanewidth[4], inplaneheight[4];
99     int nb_planes;
100
101     uint16_t *u[4], *v[4];
102     int16_t *ker[4];
103
104     int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
105
106     void (*remap_line)(uint8_t *dst, int width, const uint8_t *src, ptrdiff_t in_linesize,
107                        const uint16_t *u, const uint16_t *v, const int16_t *ker);
108 } V360Context;
109
110 void ff_v360_init(V360Context *s, int depth);
111 void ff_v360_init_x86(V360Context *s, int depth);
112
113 #endif /* AVFILTER_V360_H */