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.

145 lines
3.1KB

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