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.

179 lines
3.9KB

  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. NB_PROJECTIONS,
  47. };
  48. enum InterpMethod {
  49. NEAREST,
  50. BILINEAR,
  51. BICUBIC,
  52. LANCZOS,
  53. SPLINE16,
  54. GAUSSIAN,
  55. NB_INTERP_METHODS,
  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. enum Direction {
  67. RIGHT, ///< Axis +X
  68. LEFT, ///< Axis -X
  69. UP, ///< Axis +Y
  70. DOWN, ///< Axis -Y
  71. FRONT, ///< Axis -Z
  72. BACK, ///< Axis +Z
  73. NB_DIRECTIONS,
  74. };
  75. enum Rotation {
  76. ROT_0,
  77. ROT_90,
  78. ROT_180,
  79. ROT_270,
  80. NB_ROTATIONS,
  81. };
  82. enum RotationOrder {
  83. YAW,
  84. PITCH,
  85. ROLL,
  86. NB_RORDERS,
  87. };
  88. typedef struct XYRemap {
  89. uint16_t u[4][4];
  90. uint16_t v[4][4];
  91. float ker[4][4];
  92. } XYRemap;
  93. typedef struct V360Context {
  94. const AVClass *class;
  95. int in, out;
  96. int interp;
  97. int width, height;
  98. char *in_forder;
  99. char *out_forder;
  100. char *in_frot;
  101. char *out_frot;
  102. char *rorder;
  103. int in_cubemap_face_order[6];
  104. int out_cubemap_direction_order[6];
  105. int in_cubemap_face_rotation[6];
  106. int out_cubemap_face_rotation[6];
  107. int rotation_order[3];
  108. int in_stereo, out_stereo;
  109. float in_pad, out_pad;
  110. int fin_pad, fout_pad;
  111. float yaw, pitch, roll;
  112. int ih_flip, iv_flip;
  113. int h_flip, v_flip, d_flip;
  114. int in_transpose, out_transpose;
  115. float h_fov, v_fov, d_fov;
  116. float flat_range[2];
  117. float rot_mat[3][3];
  118. float input_mirror_modifier[2];
  119. float output_mirror_modifier[3];
  120. int in_width, in_height;
  121. int out_width, out_height;
  122. int pr_width[4], pr_height[4];
  123. int in_offset_w[4], in_offset_h[4];
  124. int out_offset_w[4], out_offset_h[4];
  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. int elements;
  131. uint16_t *u[2], *v[2];
  132. int16_t *ker[2];
  133. unsigned map[4];
  134. void (*in_transform)(const struct V360Context *s,
  135. const float *vec, int width, int height,
  136. uint16_t us[4][4], uint16_t vs[4][4], float *du, float *dv);
  137. void (*out_transform)(const struct V360Context *s,
  138. int i, int j, int width, int height,
  139. float *vec);
  140. void (*calculate_kernel)(float du, float dv, const XYRemap *rmap,
  141. uint16_t *u, uint16_t *v, int16_t *ker);
  142. int (*remap_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
  143. void (*remap_line)(uint8_t *dst, int width, const uint8_t *src, ptrdiff_t in_linesize,
  144. const uint16_t *u, const uint16_t *v, const int16_t *ker);
  145. } V360Context;
  146. void ff_v360_init(V360Context *s, int depth);
  147. void ff_v360_init_x86(V360Context *s, int depth);
  148. #endif /* AVFILTER_V360_H */