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.

121 lines
3.7KB

  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. #include "avcodec.h"
  23. #include "fmtconvert.h"
  24. #include "libavutil/common.h"
  25. static void int32_to_float_fmul_scalar_c(float *dst, const int *src, float mul, int len){
  26. int i;
  27. for(i=0; i<len; i++)
  28. dst[i] = src[i] * mul;
  29. }
  30. static av_always_inline int float_to_int16_one(const float *src){
  31. return av_clip_int16(lrintf(*src));
  32. }
  33. static void float_to_int16_c(int16_t *dst, const float *src, long len)
  34. {
  35. int i;
  36. for(i=0; i<len; i++)
  37. dst[i] = float_to_int16_one(src+i);
  38. }
  39. static void float_to_int16_interleave_c(int16_t *dst, const float **src,
  40. long len, int channels)
  41. {
  42. int i,j,c;
  43. if(channels==2){
  44. for(i=0; i<len; i++){
  45. dst[2*i] = float_to_int16_one(src[0]+i);
  46. dst[2*i+1] = float_to_int16_one(src[1]+i);
  47. }
  48. }else{
  49. for(c=0; c<channels; c++)
  50. for(i=0, j=c; i<len; i++, j+=channels)
  51. dst[j] = float_to_int16_one(src[c]+i);
  52. }
  53. }
  54. void ff_float_interleave_c(float *dst, const float **src, unsigned int len,
  55. int channels)
  56. {
  57. int j, c;
  58. unsigned int i;
  59. if (channels == 2) {
  60. for (i = 0; i < len; i++) {
  61. dst[2*i] = src[0][i];
  62. dst[2*i+1] = src[1][i];
  63. }
  64. } else if (channels == 1 && len < INT_MAX / sizeof(float)) {
  65. memcpy(dst, src[0], len * sizeof(float));
  66. } else {
  67. for (c = 0; c < channels; c++)
  68. for (i = 0, j = c; i < len; i++, j += channels)
  69. dst[j] = src[c][i];
  70. }
  71. }
  72. av_cold void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx)
  73. {
  74. c->int32_to_float_fmul_scalar = int32_to_float_fmul_scalar_c;
  75. c->float_to_int16 = float_to_int16_c;
  76. c->float_to_int16_interleave = float_to_int16_interleave_c;
  77. c->float_interleave = ff_float_interleave_c;
  78. if (ARCH_ARM) ff_fmt_convert_init_arm(c, avctx);
  79. if (HAVE_ALTIVEC) ff_fmt_convert_init_altivec(c, avctx);
  80. if (HAVE_MMX) ff_fmt_convert_init_x86(c, avctx);
  81. }
  82. /* ffdshow custom code */
  83. void float_interleave(float *dst, const float **src, long len, int channels)
  84. {
  85. int i,j,c;
  86. if(channels==2){
  87. for(i=0; i<len; i++){
  88. dst[2*i] = src[0][i] / 32768.0f;
  89. dst[2*i+1] = src[1][i] / 32768.0f;
  90. }
  91. }else{
  92. for(c=0; c<channels; c++)
  93. for(i=0, j=c; i<len; i++, j+=channels)
  94. dst[j] = src[c][i] / 32768.0f;
  95. }
  96. }
  97. void float_interleave_noscale(float *dst, const float **src, long len, int channels)
  98. {
  99. int i,j,c;
  100. if(channels==2){
  101. for(i=0; i<len; i++){
  102. dst[2*i] = src[0][i];
  103. dst[2*i+1] = src[1][i];
  104. }
  105. }else{
  106. for(c=0; c<channels; c++)
  107. for(i=0, j=c; i<len; i++, j+=channels)
  108. dst[j] = src[c][i];
  109. }
  110. }