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.

144 lines
5.6KB

  1. /*
  2. * Format Conversion Utils
  3. * Copyright (c) 2000, 2001 Fabrice Bellard
  4. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. *
  22. * MMX optimization by Nick Kurshev <nickols_k@mail.ru>
  23. */
  24. #include "libavutil/cpu.h"
  25. #include "libavutil/x86_cpu.h"
  26. #include "libavcodec/fmtconvert.h"
  27. #if HAVE_YASM
  28. void ff_int32_to_float_fmul_scalar_sse (float *dst, const int *src, float mul, int len);
  29. void ff_int32_to_float_fmul_scalar_sse2(float *dst, const int *src, float mul, int len);
  30. void ff_float_to_int16_3dnow(int16_t *dst, const float *src, long len);
  31. void ff_float_to_int16_sse (int16_t *dst, const float *src, long len);
  32. void ff_float_to_int16_sse2 (int16_t *dst, const float *src, long len);
  33. void ff_float_to_int16_interleave2_3dnow(int16_t *dst, const float **src, long len);
  34. void ff_float_to_int16_interleave2_sse (int16_t *dst, const float **src, long len);
  35. void ff_float_to_int16_interleave2_sse2 (int16_t *dst, const float **src, long len);
  36. void ff_float_to_int16_interleave6_sse(int16_t *dst, const float **src, int len);
  37. void ff_float_to_int16_interleave6_3dnow(int16_t *dst, const float **src, int len);
  38. void ff_float_to_int16_interleave6_3dn2(int16_t *dst, const float **src, int len);
  39. #define ff_float_to_int16_interleave6_sse2 ff_float_to_int16_interleave6_sse
  40. #define FLOAT_TO_INT16_INTERLEAVE(cpu) \
  41. /* gcc pessimizes register allocation if this is in the same function as float_to_int16_interleave_sse2*/\
  42. static av_noinline void float_to_int16_interleave_misc_##cpu(int16_t *dst, const float **src, long len, int channels){\
  43. DECLARE_ALIGNED(16, int16_t, tmp)[len];\
  44. int i,j,c;\
  45. for(c=0; c<channels; c++){\
  46. ff_float_to_int16_##cpu(tmp, src[c], len);\
  47. for(i=0, j=c; i<len; i++, j+=channels)\
  48. dst[j] = tmp[i];\
  49. }\
  50. }\
  51. \
  52. static void float_to_int16_interleave_##cpu(int16_t *dst, const float **src, long len, int channels){\
  53. if(channels==1)\
  54. ff_float_to_int16_##cpu(dst, src[0], len);\
  55. else if(channels==2){\
  56. ff_float_to_int16_interleave2_##cpu(dst, src, len);\
  57. }else if(channels==6){\
  58. ff_float_to_int16_interleave6_##cpu(dst, src, len);\
  59. }else\
  60. float_to_int16_interleave_misc_##cpu(dst, src, len, channels);\
  61. }
  62. FLOAT_TO_INT16_INTERLEAVE(3dnow)
  63. FLOAT_TO_INT16_INTERLEAVE(sse)
  64. FLOAT_TO_INT16_INTERLEAVE(sse2)
  65. static void float_to_int16_interleave_3dn2(int16_t *dst, const float **src, long len, int channels){
  66. if(channels==6)
  67. ff_float_to_int16_interleave6_3dn2(dst, src, len);
  68. else
  69. float_to_int16_interleave_3dnow(dst, src, len, channels);
  70. }
  71. void ff_float_interleave2_mmx(float *dst, const float **src, unsigned int len);
  72. void ff_float_interleave2_sse(float *dst, const float **src, unsigned int len);
  73. void ff_float_interleave6_mmx(float *dst, const float **src, unsigned int len);
  74. void ff_float_interleave6_sse(float *dst, const float **src, unsigned int len);
  75. static void float_interleave_mmx(float *dst, const float **src,
  76. unsigned int len, int channels)
  77. {
  78. if (channels == 2) {
  79. ff_float_interleave2_mmx(dst, src, len);
  80. } else if (channels == 6)
  81. ff_float_interleave6_mmx(dst, src, len);
  82. else
  83. ff_float_interleave_c(dst, src, len, channels);
  84. }
  85. static void float_interleave_sse(float *dst, const float **src,
  86. unsigned int len, int channels)
  87. {
  88. if (channels == 2) {
  89. ff_float_interleave2_sse(dst, src, len);
  90. } else if (channels == 6)
  91. ff_float_interleave6_sse(dst, src, len);
  92. else
  93. ff_float_interleave_c(dst, src, len, channels);
  94. }
  95. #endif
  96. void ff_fmt_convert_init_x86(FmtConvertContext *c, AVCodecContext *avctx)
  97. {
  98. int mm_flags = av_get_cpu_flags();
  99. #if HAVE_YASM
  100. if (mm_flags & AV_CPU_FLAG_MMX) {
  101. c->float_interleave = float_interleave_mmx;
  102. if (HAVE_AMD3DNOW && mm_flags & AV_CPU_FLAG_3DNOW) {
  103. if(!(avctx->flags & CODEC_FLAG_BITEXACT)){
  104. c->float_to_int16 = ff_float_to_int16_3dnow;
  105. c->float_to_int16_interleave = float_to_int16_interleave_3dnow;
  106. }
  107. }
  108. if (HAVE_AMD3DNOWEXT && mm_flags & AV_CPU_FLAG_3DNOWEXT) {
  109. if(!(avctx->flags & CODEC_FLAG_BITEXACT)){
  110. c->float_to_int16_interleave = float_to_int16_interleave_3dn2;
  111. }
  112. }
  113. if (HAVE_SSE && mm_flags & AV_CPU_FLAG_SSE) {
  114. c->int32_to_float_fmul_scalar = ff_int32_to_float_fmul_scalar_sse;
  115. c->float_to_int16 = ff_float_to_int16_sse;
  116. c->float_to_int16_interleave = float_to_int16_interleave_sse;
  117. c->float_interleave = float_interleave_sse;
  118. }
  119. if (HAVE_SSE && mm_flags & AV_CPU_FLAG_SSE2) {
  120. c->int32_to_float_fmul_scalar = ff_int32_to_float_fmul_scalar_sse2;
  121. c->float_to_int16 = ff_float_to_int16_sse2;
  122. c->float_to_int16_interleave = float_to_int16_interleave_sse2;
  123. }
  124. }
  125. #endif
  126. }