You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

191 lines
4.2KB

  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. #ifndef AVFILTER_V360_H
  21. #define AVFILTER_V360_H
  22. #include "avfilter.h"
  23. enum StereoFormats {
  24. STEREO_2D,
  25. STEREO_SBS,
  26. STEREO_TB,
  27. NB_STEREO_FMTS,
  28. };
  29. enum Projections {
  30. EQUIRECTANGULAR,
  31. CUBEMAP_3_2,
  32. CUBEMAP_6_1,
  33. EQUIANGULAR,
  34. FLAT,
  35. DUAL_FISHEYE,
  36. BARREL,
  37. CUBEMAP_1_6,
  38. STEREOGRAPHIC,
  39. MERCATOR,
  40. BALL,
  41. HAMMER,
  42. SINUSOIDAL,
  43. FISHEYE,
  44. PANNINI,
  45. CYLINDRICAL,
  46. PERSPECTIVE,
  47. TETRAHEDRON,
  48. BARREL_SPLIT,
  49. TSPYRAMID,
  50. HEQUIRECTANGULAR,
  51. NB_PROJECTIONS,
  52. };
  53. enum InterpMethod {
  54. NEAREST,
  55. BILINEAR,
  56. LAGRANGE9,
  57. BICUBIC,
  58. LANCZOS,
  59. SPLINE16,
  60. GAUSSIAN,
  61. NB_INTERP_METHODS,
  62. };
  63. enum Faces {
  64. TOP_LEFT,
  65. TOP_MIDDLE,
  66. TOP_RIGHT,
  67. BOTTOM_LEFT,
  68. BOTTOM_MIDDLE,
  69. BOTTOM_RIGHT,
  70. NB_FACES,
  71. };
  72. enum Direction {
  73. RIGHT, ///< Axis +X
  74. LEFT, ///< Axis -X
  75. UP, ///< Axis +Y
  76. DOWN, ///< Axis -Y
  77. FRONT, ///< Axis -Z
  78. BACK, ///< Axis +Z
  79. NB_DIRECTIONS,
  80. };
  81. enum Rotation {
  82. ROT_0,
  83. ROT_90,
  84. ROT_180,
  85. ROT_270,
  86. NB_ROTATIONS,
  87. };
  88. enum RotationOrder {
  89. YAW,
  90. PITCH,
  91. ROLL,
  92. NB_RORDERS,
  93. };
  94. typedef struct XYRemap {
  95. int16_t u[4][4];
  96. int16_t v[4][4];
  97. float ker[4][4];
  98. } XYRemap;
  99. typedef struct V360Context {
  100. const AVClass *class;
  101. int in, out;
  102. int interp;
  103. int alpha;
  104. int width, height;
  105. char *in_forder;
  106. char *out_forder;
  107. char *in_frot;
  108. char *out_frot;
  109. char *rorder;
  110. int in_cubemap_face_order[6];
  111. int out_cubemap_direction_order[6];
  112. int in_cubemap_face_rotation[6];
  113. int out_cubemap_face_rotation[6];
  114. int rotation_order[3];
  115. int in_stereo, out_stereo;
  116. float in_pad, out_pad;
  117. int fin_pad, fout_pad;
  118. float yaw, pitch, roll;
  119. int ih_flip, iv_flip;
  120. int h_flip, v_flip, d_flip;
  121. int in_transpose, out_transpose;
  122. float h_fov, v_fov, d_fov;
  123. float ih_fov, iv_fov, id_fov;
  124. float flat_range[2];
  125. float iflat_range[2];
  126. float rot_mat[3][3];
  127. float input_mirror_modifier[2];
  128. float output_mirror_modifier[3];
  129. int in_width, in_height;
  130. int out_width, out_height;
  131. int pr_width[4], pr_height[4];
  132. int in_offset_w[4], in_offset_h[4];
  133. int out_offset_w[4], out_offset_h[4];
  134. int planewidth[4], planeheight[4];
  135. int inplanewidth[4], inplaneheight[4];
  136. int uv_linesize[4];
  137. int nb_planes;
  138. int nb_allocated;
  139. int elements;
  140. int mask_size;
  141. int max_value;
  142. int16_t *u[2], *v[2];
  143. int16_t *ker[2];
  144. uint8_t *mask;
  145. unsigned map[4];
  146. int (*in_transform)(const struct V360Context *s,
  147. const float *vec, int width, int height,
  148. int16_t us[4][4], int16_t vs[4][4], float *du, float *dv);
  149. int (*out_transform)(const struct V360Context *s,
  150. int i, int j, int width, int height,
  151. float *vec);
  152. void (*calculate_kernel)(float du, float dv, const XYRemap *rmap,
  153. int16_t *u, int16_t *v, int16_t *ker);
  154. int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
  155. void (*remap_line)(uint8_t *dst, int width, const uint8_t *const src, ptrdiff_t in_linesize,
  156. const int16_t *const u, const int16_t *const v, const int16_t *const ker);
  157. } V360Context;
  158. void ff_v360_init(V360Context *s, int depth);
  159. void ff_v360_init_x86(V360Context *s, int depth);
  160. #endif /* AVFILTER_V360_H */