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.

263 lines
8.6KB

  1. /*
  2. * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 channel layout utility functions
  23. */
  24. #include <stdint.h>
  25. #include "avstring.h"
  26. #include "avutil.h"
  27. #include "channel_layout.h"
  28. #include "bprint.h"
  29. #include "common.h"
  30. struct channel_name {
  31. const char *name;
  32. const char *description;
  33. };
  34. static const struct channel_name channel_names[] = {
  35. [0] = { "FL", "front left" },
  36. [1] = { "FR", "front right" },
  37. [2] = { "FC", "front center" },
  38. [3] = { "LFE", "low frequency" },
  39. [4] = { "BL", "back left" },
  40. [5] = { "BR", "back right" },
  41. [6] = { "FLC", "front left-of-center" },
  42. [7] = { "FRC", "front right-of-center" },
  43. [8] = { "BC", "back center" },
  44. [9] = { "SL", "side left" },
  45. [10] = { "SR", "side right" },
  46. [11] = { "TC", "top center" },
  47. [12] = { "TFL", "top front left" },
  48. [13] = { "TFC", "top front center" },
  49. [14] = { "TFR", "top front right" },
  50. [15] = { "TBL", "top back left" },
  51. [16] = { "TBC", "top back center" },
  52. [17] = { "TBR", "top back right" },
  53. [29] = { "DL", "downmix left" },
  54. [30] = { "DR", "downmix right" },
  55. [31] = { "WL", "wide left" },
  56. [32] = { "WR", "wide right" },
  57. [33] = { "SDL", "surround direct left" },
  58. [34] = { "SDR", "surround direct right" },
  59. [35] = { "LFE2", "low frequency 2" },
  60. };
  61. static const char *get_channel_name(int channel_id)
  62. {
  63. if (channel_id < 0 || channel_id >= FF_ARRAY_ELEMS(channel_names))
  64. return NULL;
  65. return channel_names[channel_id].name;
  66. }
  67. static const struct {
  68. const char *name;
  69. int nb_channels;
  70. uint64_t layout;
  71. } channel_layout_map[] = {
  72. { "mono", 1, AV_CH_LAYOUT_MONO },
  73. { "stereo", 2, AV_CH_LAYOUT_STEREO },
  74. { "2.1", 3, AV_CH_LAYOUT_2POINT1 },
  75. { "3.0", 3, AV_CH_LAYOUT_SURROUND },
  76. { "3.0(back)", 3, AV_CH_LAYOUT_2_1 },
  77. { "4.0", 4, AV_CH_LAYOUT_4POINT0 },
  78. { "quad", 4, AV_CH_LAYOUT_QUAD },
  79. { "quad(side)", 4, AV_CH_LAYOUT_2_2 },
  80. { "3.1", 4, AV_CH_LAYOUT_3POINT1 },
  81. { "5.0", 5, AV_CH_LAYOUT_5POINT0_BACK },
  82. { "5.0(side)", 5, AV_CH_LAYOUT_5POINT0 },
  83. { "4.1", 5, AV_CH_LAYOUT_4POINT1 },
  84. { "5.1", 6, AV_CH_LAYOUT_5POINT1_BACK },
  85. { "5.1(side)", 6, AV_CH_LAYOUT_5POINT1 },
  86. { "6.0", 6, AV_CH_LAYOUT_6POINT0 },
  87. { "6.0(front)", 6, AV_CH_LAYOUT_6POINT0_FRONT },
  88. { "hexagonal", 6, AV_CH_LAYOUT_HEXAGONAL },
  89. { "6.1", 7, AV_CH_LAYOUT_6POINT1 },
  90. { "6.1", 7, AV_CH_LAYOUT_6POINT1_BACK },
  91. { "6.1(front)", 7, AV_CH_LAYOUT_6POINT1_FRONT },
  92. { "7.0", 7, AV_CH_LAYOUT_7POINT0 },
  93. { "7.0(front)", 7, AV_CH_LAYOUT_7POINT0_FRONT },
  94. { "7.1", 8, AV_CH_LAYOUT_7POINT1 },
  95. { "7.1(wide)", 8, AV_CH_LAYOUT_7POINT1_WIDE_BACK },
  96. { "7.1(wide-side)", 8, AV_CH_LAYOUT_7POINT1_WIDE },
  97. { "octagonal", 8, AV_CH_LAYOUT_OCTAGONAL },
  98. { "hexadecagonal", 16, AV_CH_LAYOUT_HEXADECAGONAL },
  99. { "downmix", 2, AV_CH_LAYOUT_STEREO_DOWNMIX, },
  100. };
  101. static uint64_t get_channel_layout_single(const char *name, int name_len)
  102. {
  103. int i;
  104. char *end;
  105. int64_t layout;
  106. for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++) {
  107. if (strlen(channel_layout_map[i].name) == name_len &&
  108. !memcmp(channel_layout_map[i].name, name, name_len))
  109. return channel_layout_map[i].layout;
  110. }
  111. for (i = 0; i < FF_ARRAY_ELEMS(channel_names); i++)
  112. if (channel_names[i].name &&
  113. strlen(channel_names[i].name) == name_len &&
  114. !memcmp(channel_names[i].name, name, name_len))
  115. return (int64_t)1 << i;
  116. i = strtol(name, &end, 10);
  117. if ((end + 1 - name == name_len && *end == 'c'))
  118. return av_get_default_channel_layout(i);
  119. layout = strtoll(name, &end, 0);
  120. if (end - name == name_len)
  121. return FFMAX(layout, 0);
  122. return 0;
  123. }
  124. uint64_t av_get_channel_layout(const char *name)
  125. {
  126. const char *n, *e;
  127. const char *name_end = name + strlen(name);
  128. int64_t layout = 0, layout_single;
  129. for (n = name; n < name_end; n = e + 1) {
  130. for (e = n; e < name_end && *e != '+' && *e != '|'; e++);
  131. layout_single = get_channel_layout_single(n, e - n);
  132. if (!layout_single)
  133. return 0;
  134. layout |= layout_single;
  135. }
  136. return layout;
  137. }
  138. void av_bprint_channel_layout(struct AVBPrint *bp,
  139. int nb_channels, uint64_t channel_layout)
  140. {
  141. int i;
  142. if (nb_channels <= 0)
  143. nb_channels = av_get_channel_layout_nb_channels(channel_layout);
  144. for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++)
  145. if (nb_channels == channel_layout_map[i].nb_channels &&
  146. channel_layout == channel_layout_map[i].layout) {
  147. av_bprintf(bp, "%s", channel_layout_map[i].name);
  148. return;
  149. }
  150. av_bprintf(bp, "%d channels", nb_channels);
  151. if (channel_layout) {
  152. int i, ch;
  153. av_bprintf(bp, " (");
  154. for (i = 0, ch = 0; i < 64; i++) {
  155. if ((channel_layout & (UINT64_C(1) << i))) {
  156. const char *name = get_channel_name(i);
  157. if (name) {
  158. if (ch > 0)
  159. av_bprintf(bp, "+");
  160. av_bprintf(bp, "%s", name);
  161. }
  162. ch++;
  163. }
  164. }
  165. av_bprintf(bp, ")");
  166. }
  167. }
  168. void av_get_channel_layout_string(char *buf, int buf_size,
  169. int nb_channels, uint64_t channel_layout)
  170. {
  171. AVBPrint bp;
  172. av_bprint_init_for_buffer(&bp, buf, buf_size);
  173. av_bprint_channel_layout(&bp, nb_channels, channel_layout);
  174. }
  175. int av_get_channel_layout_nb_channels(uint64_t channel_layout)
  176. {
  177. return av_popcount64(channel_layout);
  178. }
  179. int64_t av_get_default_channel_layout(int nb_channels) {
  180. int i;
  181. for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++)
  182. if (nb_channels == channel_layout_map[i].nb_channels)
  183. return channel_layout_map[i].layout;
  184. return 0;
  185. }
  186. int av_get_channel_layout_channel_index(uint64_t channel_layout,
  187. uint64_t channel)
  188. {
  189. if (!(channel_layout & channel) ||
  190. av_get_channel_layout_nb_channels(channel) != 1)
  191. return AVERROR(EINVAL);
  192. channel_layout &= channel - 1;
  193. return av_get_channel_layout_nb_channels(channel_layout);
  194. }
  195. const char *av_get_channel_name(uint64_t channel)
  196. {
  197. int i;
  198. if (av_get_channel_layout_nb_channels(channel) != 1)
  199. return NULL;
  200. for (i = 0; i < 64; i++)
  201. if ((1ULL<<i) & channel)
  202. return get_channel_name(i);
  203. return NULL;
  204. }
  205. const char *av_get_channel_description(uint64_t channel)
  206. {
  207. int i;
  208. if (av_get_channel_layout_nb_channels(channel) != 1)
  209. return NULL;
  210. for (i = 0; i < FF_ARRAY_ELEMS(channel_names); i++)
  211. if ((1ULL<<i) & channel)
  212. return channel_names[i].description;
  213. return NULL;
  214. }
  215. uint64_t av_channel_layout_extract_channel(uint64_t channel_layout, int index)
  216. {
  217. int i;
  218. if (av_get_channel_layout_nb_channels(channel_layout) <= index)
  219. return 0;
  220. for (i = 0; i < 64; i++) {
  221. if ((1ULL << i) & channel_layout && !index--)
  222. return 1ULL << i;
  223. }
  224. return 0;
  225. }
  226. int av_get_standard_channel_layout(unsigned index, uint64_t *layout,
  227. const char **name)
  228. {
  229. if (index >= FF_ARRAY_ELEMS(channel_layout_map))
  230. return AVERROR_EOF;
  231. if (layout) *layout = channel_layout_map[index].layout;
  232. if (name) *name = channel_layout_map[index].name;
  233. return 0;
  234. }