swscale.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "config.h"
  19. #include "libavutil/attributes.h"
  20. #include "libavutil/riscv/cpu.h"
  21. #include "libswscale/swscale_internal.h"
  22. void ff_range_lum_to_jpeg_16_rvv(int16_t *, int);
  23. void ff_range_chr_to_jpeg_16_rvv(int16_t *, int16_t *, int);
  24. void ff_range_lum_from_jpeg_16_rvv(int16_t *, int);
  25. void ff_range_chr_from_jpeg_16_rvv(int16_t *, int16_t *, int);
  26. av_cold void ff_sws_init_range_convert_riscv(SwsInternal *c)
  27. {
  28. /* This code is currently disabled because of changes in the base
  29. * implementation of these functions. This code should be enabled
  30. * again once those changes are ported to this architecture. */
  31. #if 0
  32. #if HAVE_RVV
  33. int flags = av_get_cpu_flags();
  34. static const struct {
  35. void (*lum)(int16_t *, int);
  36. void (*chr)(int16_t *, int16_t *, int);
  37. } convs[2] = {
  38. { ff_range_lum_to_jpeg_16_rvv, ff_range_chr_to_jpeg_16_rvv },
  39. { ff_range_lum_from_jpeg_16_rvv, ff_range_chr_from_jpeg_16_rvv },
  40. };
  41. if (c->dstBpc <= 14 &&
  42. (flags & AV_CPU_FLAG_RVV_I32) && (flags & AV_CPU_FLAG_RVB)) {
  43. bool from = c->opts.src_range != 0;
  44. c->lumConvertRange = convs[from].lum;
  45. c->chrConvertRange = convs[from].chr;
  46. }
  47. #endif
  48. #endif
  49. }
  50. #define RVV_INPUT(name) \
  51. void ff_##name##ToY_rvv(uint8_t *dst, const uint8_t *src, const uint8_t *, \
  52. const uint8_t *, int w, uint32_t *coeffs, void *); \
  53. void ff_##name##ToUV_rvv(uint8_t *, uint8_t *, const uint8_t *, \
  54. const uint8_t *, const uint8_t *, int w, \
  55. uint32_t *coeffs, void *); \
  56. void ff_##name##ToUV_half_rvv(uint8_t *, uint8_t *, const uint8_t *, \
  57. const uint8_t *, const uint8_t *, int w, \
  58. uint32_t *coeffs, void *)
  59. RVV_INPUT(abgr32);
  60. RVV_INPUT(argb32);
  61. RVV_INPUT(bgr24);
  62. RVV_INPUT(bgra32);
  63. RVV_INPUT(rgb24);
  64. RVV_INPUT(rgba32);
  65. av_cold void ff_sws_init_swscale_riscv(SwsInternal *c)
  66. {
  67. #if HAVE_RVV
  68. int flags = av_get_cpu_flags();
  69. if ((flags & AV_CPU_FLAG_RVV_I32) && (flags & AV_CPU_FLAG_RVB)) {
  70. switch (c->opts.src_format) {
  71. case AV_PIX_FMT_ABGR:
  72. c->lumToYV12 = ff_abgr32ToY_rvv;
  73. if (c->chrSrcHSubSample)
  74. c->chrToYV12 = ff_abgr32ToUV_half_rvv;
  75. else
  76. c->chrToYV12 = ff_abgr32ToUV_rvv;
  77. break;
  78. case AV_PIX_FMT_ARGB:
  79. c->lumToYV12 = ff_argb32ToY_rvv;
  80. if (c->chrSrcHSubSample)
  81. c->chrToYV12 = ff_argb32ToUV_half_rvv;
  82. else
  83. c->chrToYV12 = ff_argb32ToUV_rvv;
  84. break;
  85. case AV_PIX_FMT_BGR24:
  86. c->lumToYV12 = ff_bgr24ToY_rvv;
  87. if (c->chrSrcHSubSample)
  88. c->chrToYV12 = ff_bgr24ToUV_half_rvv;
  89. else
  90. c->chrToYV12 = ff_bgr24ToUV_rvv;
  91. break;
  92. case AV_PIX_FMT_BGRA:
  93. c->lumToYV12 = ff_bgra32ToY_rvv;
  94. if (c->chrSrcHSubSample)
  95. c->chrToYV12 = ff_bgra32ToUV_half_rvv;
  96. else
  97. c->chrToYV12 = ff_bgra32ToUV_rvv;
  98. break;
  99. case AV_PIX_FMT_RGB24:
  100. c->lumToYV12 = ff_rgb24ToY_rvv;
  101. if (c->chrSrcHSubSample)
  102. c->chrToYV12 = ff_rgb24ToUV_half_rvv;
  103. else
  104. c->chrToYV12 = ff_rgb24ToUV_rvv;
  105. break;
  106. case AV_PIX_FMT_RGBA:
  107. c->lumToYV12 = ff_rgba32ToY_rvv;
  108. if (c->chrSrcHSubSample)
  109. c->chrToYV12 = ff_rgba32ToUV_half_rvv;
  110. else
  111. c->chrToYV12 = ff_rgba32ToUV_rvv;
  112. break;
  113. }
  114. }
  115. #endif
  116. }