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.

156 lines
5.9KB

  1. /*
  2. * audio conversion
  3. * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file audioconvert.c
  23. * audio conversion
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include "avcodec.h"
  27. #include "audioconvert.h"
  28. typedef struct SampleFmtInfo {
  29. const char *name;
  30. int bits;
  31. } SampleFmtInfo;
  32. /** this table gives more information about formats */
  33. static const SampleFmtInfo sample_fmt_info[SAMPLE_FMT_NB] = {
  34. [SAMPLE_FMT_U8] = { .name = "u8", .bits = 8 },
  35. [SAMPLE_FMT_S16] = { .name = "s16", .bits = 16 },
  36. [SAMPLE_FMT_S24] = { .name = "s24", .bits = 24 },
  37. [SAMPLE_FMT_S32] = { .name = "s32", .bits = 32 },
  38. [SAMPLE_FMT_FLT] = { .name = "flt", .bits = 32 },
  39. [SAMPLE_FMT_DBL] = { .name = "dbl", .bits = 64 },
  40. };
  41. const char *avcodec_get_sample_fmt_name(int sample_fmt)
  42. {
  43. if (sample_fmt < 0 || sample_fmt >= SAMPLE_FMT_NB)
  44. return NULL;
  45. return sample_fmt_info[sample_fmt].name;
  46. }
  47. enum SampleFormat avcodec_get_sample_fmt(const char* name)
  48. {
  49. int i;
  50. for (i=0; i < SAMPLE_FMT_NB; i++)
  51. if (!strcmp(sample_fmt_info[i].name, name))
  52. return i;
  53. return SAMPLE_FMT_NONE;
  54. }
  55. void avcodec_sample_fmt_string (char *buf, int buf_size, int sample_fmt)
  56. {
  57. /* print header */
  58. if (sample_fmt < 0)
  59. snprintf (buf, buf_size, "name " " depth");
  60. else if (sample_fmt < SAMPLE_FMT_NB) {
  61. SampleFmtInfo info= sample_fmt_info[sample_fmt];
  62. snprintf (buf, buf_size, "%-6s" " %2d ", info.name, info.bits);
  63. }
  64. }
  65. struct AVAudioConvert {
  66. int in_channels, out_channels;
  67. int fmt_pair;
  68. };
  69. AVAudioConvert *av_audio_convert_alloc(enum SampleFormat out_fmt, int out_channels,
  70. enum SampleFormat in_fmt, int in_channels,
  71. const const float *matrix, int flags)
  72. {
  73. AVAudioConvert *ctx;
  74. if (in_channels!=out_channels)
  75. return NULL; /* FIXME: not supported */
  76. ctx = av_malloc(sizeof(AVAudioConvert));
  77. if (!ctx)
  78. return NULL;
  79. ctx->in_channels = in_channels;
  80. ctx->out_channels = out_channels;
  81. ctx->fmt_pair = out_fmt + SAMPLE_FMT_NB*in_fmt;
  82. return ctx;
  83. }
  84. void av_audio_convert_free(AVAudioConvert *ctx)
  85. {
  86. av_free(ctx);
  87. }
  88. int av_audio_convert(AVAudioConvert *ctx,
  89. void * const out[6], const int out_stride[6],
  90. const void * const in[6], const int in_stride[6], int len)
  91. {
  92. int ch;
  93. //FIXME optimize common cases
  94. for(ch=0; ch<ctx->out_channels; ch++){
  95. const int is= in_stride[ch];
  96. const int os= out_stride[ch];
  97. uint8_t *pi= in[ch];
  98. uint8_t *po= out[ch];
  99. uint8_t *end= po + os*len;
  100. if(!out[ch])
  101. continue;
  102. #define CONV(ofmt, otype, ifmt, expr)\
  103. if(ctx->fmt_pair == ofmt + SAMPLE_FMT_NB*ifmt){\
  104. do{\
  105. *(otype*)po = expr; pi += is; po += os;\
  106. }while(po < end);\
  107. }
  108. //FIXME put things below under ifdefs so we do not waste space for cases no codec will need
  109. //FIXME rounding and clipping ?
  110. CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_U8 , *(uint8_t*)pi)
  111. else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_U8 , (*(uint8_t*)pi - 0x80)<<8)
  112. else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_U8 , (*(uint8_t*)pi - 0x80)<<24)
  113. else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_U8 , (*(uint8_t*)pi - 0x80)*(1.0 / (1<<7)))
  114. else CONV(SAMPLE_FMT_DBL, double , SAMPLE_FMT_U8 , (*(uint8_t*)pi - 0x80)*(1.0 / (1<<7)))
  115. else CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_S16, (*(int16_t*)pi>>8) + 0x80)
  116. else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_S16, *(int16_t*)pi)
  117. else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_S16, *(int16_t*)pi<<16)
  118. else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_S16, *(int16_t*)pi*(1.0 / (1<<15)))
  119. else CONV(SAMPLE_FMT_DBL, double , SAMPLE_FMT_S16, *(int16_t*)pi*(1.0 / (1<<15)))
  120. else CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_S32, (*(int32_t*)pi>>24) + 0x80)
  121. else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_S32, *(int32_t*)pi>>16)
  122. else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_S32, *(int32_t*)pi)
  123. else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_S32, *(int32_t*)pi*(1.0 / (1<<31)))
  124. else CONV(SAMPLE_FMT_DBL, double , SAMPLE_FMT_S32, *(int32_t*)pi*(1.0 / (1<<31)))
  125. else CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_FLT, lrintf(*(float*)pi * (1<<7)) + 0x80)
  126. else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_FLT, lrintf(*(float*)pi * (1<<15)))
  127. else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_FLT, lrintf(*(float*)pi * (1<<31)))
  128. else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_FLT, *(float*)pi)
  129. else CONV(SAMPLE_FMT_DBL, double , SAMPLE_FMT_FLT, *(float*)pi)
  130. else CONV(SAMPLE_FMT_U8 , uint8_t, SAMPLE_FMT_DBL, lrint(*(double*)pi * (1<<7)) + 0x80)
  131. else CONV(SAMPLE_FMT_S16, int16_t, SAMPLE_FMT_DBL, lrint(*(double*)pi * (1<<15)))
  132. else CONV(SAMPLE_FMT_S32, int32_t, SAMPLE_FMT_DBL, lrint(*(double*)pi * (1<<31)))
  133. else CONV(SAMPLE_FMT_FLT, float , SAMPLE_FMT_DBL, *(double*)pi)
  134. else CONV(SAMPLE_FMT_DBL, double , SAMPLE_FMT_DBL, *(double*)pi)
  135. else return -1;
  136. }
  137. return 0;
  138. }