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.

102 lines
3.3KB

  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 Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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 int32_t *src,
  26. float mul, int len)
  27. {
  28. int i;
  29. for(i=0; i<len; i++)
  30. dst[i] = src[i] * mul;
  31. }
  32. static void int32_to_float_fmul_array8_c(FmtConvertContext *c, float *dst,
  33. const int32_t *src, const float *mul,
  34. int len)
  35. {
  36. int i;
  37. for (i = 0; i < len; i += 8)
  38. c->int32_to_float_fmul_scalar(&dst[i], &src[i], *mul++, 8);
  39. }
  40. static av_always_inline int float_to_int16_one(const float *src){
  41. return av_clip_int16(lrintf(*src));
  42. }
  43. static void float_to_int16_c(int16_t *dst, const float *src, long len)
  44. {
  45. int i;
  46. for(i=0; i<len; i++)
  47. dst[i] = float_to_int16_one(src+i);
  48. }
  49. static void float_to_int16_interleave_c(int16_t *dst, const float **src,
  50. long len, int channels)
  51. {
  52. int i,j,c;
  53. if(channels==2){
  54. for(i=0; i<len; i++){
  55. dst[2*i] = float_to_int16_one(src[0]+i);
  56. dst[2*i+1] = float_to_int16_one(src[1]+i);
  57. }
  58. }else{
  59. for(c=0; c<channels; c++)
  60. for(i=0, j=c; i<len; i++, j+=channels)
  61. dst[j] = float_to_int16_one(src[c]+i);
  62. }
  63. }
  64. void ff_float_interleave_c(float *dst, const float **src, unsigned int len,
  65. int channels)
  66. {
  67. int j, c;
  68. unsigned int i;
  69. if (channels == 2) {
  70. for (i = 0; i < len; i++) {
  71. dst[2*i] = src[0][i];
  72. dst[2*i+1] = src[1][i];
  73. }
  74. } else if (channels == 1 && len < INT_MAX / sizeof(float)) {
  75. memcpy(dst, src[0], len * sizeof(float));
  76. } else {
  77. for (c = 0; c < channels; c++)
  78. for (i = 0, j = c; i < len; i++, j += channels)
  79. dst[j] = src[c][i];
  80. }
  81. }
  82. av_cold void ff_fmt_convert_init(FmtConvertContext *c, AVCodecContext *avctx)
  83. {
  84. c->int32_to_float_fmul_scalar = int32_to_float_fmul_scalar_c;
  85. c->int32_to_float_fmul_array8 = int32_to_float_fmul_array8_c;
  86. c->float_to_int16 = float_to_int16_c;
  87. c->float_to_int16_interleave = float_to_int16_interleave_c;
  88. c->float_interleave = ff_float_interleave_c;
  89. if (ARCH_ARM) ff_fmt_convert_init_arm(c, avctx);
  90. if (ARCH_PPC) ff_fmt_convert_init_ppc(c, avctx);
  91. if (ARCH_X86) ff_fmt_convert_init_x86(c, avctx);
  92. }