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.

230 lines
7.5KB

  1. /*
  2. * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * audio conversion routines
  23. */
  24. #include "avstring.h"
  25. #include "avutil.h"
  26. #include "audioconvert.h"
  27. static const char * const channel_names[] = {
  28. [0] = "FL", /* front left */
  29. [1] = "FR", /* front right */
  30. [2] = "FC", /* front center */
  31. [3] = "LFE", /* low frequency */
  32. [4] = "BL", /* back left */
  33. [5] = "BR", /* back right */
  34. [6] = "FLC", /* front left-of-center */
  35. [7] = "FRC", /* front right-of-center */
  36. [8] = "BC", /* back-center */
  37. [9] = "SL", /* side left */
  38. [10] = "SR", /* side right */
  39. [11] = "TC", /* top center */
  40. [12] = "TFL", /* top front left */
  41. [13] = "TFC", /* top front center */
  42. [14] = "TFR", /* top front right */
  43. [15] = "TBL", /* top back left */
  44. [16] = "TBC", /* top back center */
  45. [17] = "TBR", /* top back right */
  46. [29] = "DL", /* downmix left */
  47. [30] = "DR", /* downmix right */
  48. [31] = "WL", /* wide left */
  49. [32] = "WR", /* wide right */
  50. [33] = "SDL", /* surround direct left */
  51. [34] = "SDR", /* surround direct right */
  52. };
  53. static const char *get_channel_name(int channel_id)
  54. {
  55. if (channel_id < 0 || channel_id >= FF_ARRAY_ELEMS(channel_names))
  56. return NULL;
  57. return channel_names[channel_id];
  58. }
  59. static const struct {
  60. const char *name;
  61. int nb_channels;
  62. uint64_t layout;
  63. } channel_layout_map[] = {
  64. { "mono", 1, AV_CH_LAYOUT_MONO },
  65. { "stereo", 2, AV_CH_LAYOUT_STEREO },
  66. { "stereo", 2, AV_CH_LAYOUT_STEREO_DOWNMIX },
  67. { "2.1", 3, AV_CH_LAYOUT_2POINT1 },
  68. { "3.0", 3, AV_CH_LAYOUT_SURROUND },
  69. { "3.0(back)", 3, AV_CH_LAYOUT_2_1 },
  70. { "3.1", 4, AV_CH_LAYOUT_3POINT1 },
  71. { "4.0", 4, AV_CH_LAYOUT_4POINT0 },
  72. { "quad", 4, AV_CH_LAYOUT_QUAD },
  73. { "quad(side)", 4, AV_CH_LAYOUT_2_2 },
  74. { "4.1", 5, AV_CH_LAYOUT_4POINT1 },
  75. { "5.0", 5, AV_CH_LAYOUT_5POINT0 },
  76. { "5.0", 5, AV_CH_LAYOUT_5POINT0_BACK },
  77. { "5.1", 6, AV_CH_LAYOUT_5POINT1 },
  78. { "5.1", 6, AV_CH_LAYOUT_5POINT1_BACK },
  79. { "6.0", 6, AV_CH_LAYOUT_6POINT0 },
  80. { "6.0(front)", 6, AV_CH_LAYOUT_6POINT0_FRONT },
  81. { "hexagonal", 6, AV_CH_LAYOUT_HEXAGONAL },
  82. { "6.1", 7, AV_CH_LAYOUT_6POINT1 },
  83. { "6.1", 7, AV_CH_LAYOUT_6POINT1_BACK },
  84. { "6.1(front)", 7, AV_CH_LAYOUT_6POINT1_FRONT },
  85. { "7.0", 7, AV_CH_LAYOUT_7POINT0 },
  86. { "7.0(front)", 7, AV_CH_LAYOUT_7POINT0_FRONT },
  87. { "7.1", 8, AV_CH_LAYOUT_7POINT1 },
  88. { "7.1(wide)", 8, AV_CH_LAYOUT_7POINT1_WIDE },
  89. { "7.1(wide)", 8, AV_CH_LAYOUT_7POINT1_WIDE_BACK },
  90. { "octagonal", 8, AV_CH_LAYOUT_OCTAGONAL },
  91. { "downmix", 2, AV_CH_LAYOUT_STEREO_DOWNMIX, },
  92. { 0 }
  93. };
  94. static uint64_t get_channel_layout_single(const char *name, int name_len)
  95. {
  96. int i;
  97. char *end;
  98. int64_t layout;
  99. for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map) - 1; i++) {
  100. if (strlen(channel_layout_map[i].name) == name_len &&
  101. !memcmp(channel_layout_map[i].name, name, name_len))
  102. return channel_layout_map[i].layout;
  103. }
  104. for (i = 0; i < FF_ARRAY_ELEMS(channel_names); i++)
  105. if (channel_names[i] &&
  106. strlen(channel_names[i]) == name_len &&
  107. !memcmp(channel_names[i], name, name_len))
  108. return (int64_t)1 << i;
  109. i = strtol(name, &end, 10);
  110. if (end - name == name_len ||
  111. (end + 1 - name == name_len && *end == 'c'))
  112. return av_get_default_channel_layout(i);
  113. layout = strtoll(name, &end, 0);
  114. if (end - name == name_len)
  115. return FFMAX(layout, 0);
  116. return 0;
  117. }
  118. uint64_t av_get_channel_layout(const char *name)
  119. {
  120. const char *n, *e;
  121. const char *name_end = name + strlen(name);
  122. int64_t layout = 0, layout_single;
  123. for (n = name; n < name_end; n = e + 1) {
  124. for (e = n; e < name_end && *e != '+' && *e != '|'; e++);
  125. layout_single = get_channel_layout_single(n, e - n);
  126. if (!layout_single)
  127. return 0;
  128. layout |= layout_single;
  129. }
  130. return layout;
  131. }
  132. void av_get_channel_layout_string(char *buf, int buf_size,
  133. int nb_channels, uint64_t channel_layout)
  134. {
  135. int i;
  136. if (nb_channels <= 0)
  137. nb_channels = av_get_channel_layout_nb_channels(channel_layout);
  138. for (i = 0; channel_layout_map[i].name; i++)
  139. if (nb_channels == channel_layout_map[i].nb_channels &&
  140. channel_layout == channel_layout_map[i].layout) {
  141. av_strlcpy(buf, channel_layout_map[i].name, buf_size);
  142. return;
  143. }
  144. snprintf(buf, buf_size, "%d channels", nb_channels);
  145. if (channel_layout) {
  146. int i, ch;
  147. av_strlcat(buf, " (", buf_size);
  148. for (i = 0, ch = 0; i < 64; i++) {
  149. if ((channel_layout & (UINT64_C(1) << i))) {
  150. const char *name = get_channel_name(i);
  151. if (name) {
  152. if (ch > 0)
  153. av_strlcat(buf, "|", buf_size);
  154. av_strlcat(buf, name, buf_size);
  155. }
  156. ch++;
  157. }
  158. }
  159. av_strlcat(buf, ")", buf_size);
  160. }
  161. }
  162. int av_get_channel_layout_nb_channels(uint64_t channel_layout)
  163. {
  164. return av_popcount64(channel_layout);
  165. }
  166. uint64_t av_get_default_channel_layout(int nb_channels)
  167. {
  168. switch(nb_channels) {
  169. case 1: return AV_CH_LAYOUT_MONO;
  170. case 2: return AV_CH_LAYOUT_STEREO;
  171. case 3: return AV_CH_LAYOUT_SURROUND;
  172. case 4: return AV_CH_LAYOUT_QUAD;
  173. case 5: return AV_CH_LAYOUT_5POINT0;
  174. case 6: return AV_CH_LAYOUT_5POINT1;
  175. case 7: return AV_CH_LAYOUT_6POINT1;
  176. case 8: return AV_CH_LAYOUT_7POINT1;
  177. default: return 0;
  178. }
  179. }
  180. int av_get_channel_layout_channel_index(uint64_t channel_layout,
  181. uint64_t channel)
  182. {
  183. if (!(channel_layout & channel) ||
  184. av_get_channel_layout_nb_channels(channel) != 1)
  185. return AVERROR(EINVAL);
  186. channel_layout &= channel - 1;
  187. return av_get_channel_layout_nb_channels(channel_layout);
  188. }
  189. const char *av_get_channel_name(uint64_t channel)
  190. {
  191. int i;
  192. if (av_get_channel_layout_nb_channels(channel) != 1)
  193. return NULL;
  194. for (i = 0; i < 64; i++)
  195. if ((1ULL<<i) & channel)
  196. return get_channel_name(i);
  197. return NULL;
  198. }
  199. uint64_t av_channel_layout_extract_channel(uint64_t channel_layout, int index)
  200. {
  201. int i;
  202. if (av_get_channel_layout_nb_channels(channel_layout) <= index)
  203. return 0;
  204. for (i = 0; i < 64; i++) {
  205. if ((1ULL << i) & channel_layout && !index--)
  206. return 1ULL << i;
  207. }
  208. return 0;
  209. }