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.

301 lines
9.8KB

  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. #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
  102. static uint64_t get_channel_layout_single(const char *name, int name_len, int compat)
  103. #else
  104. static uint64_t get_channel_layout_single(const char *name, int name_len)
  105. #endif
  106. {
  107. int i;
  108. char *end;
  109. int64_t layout;
  110. for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++) {
  111. if (strlen(channel_layout_map[i].name) == name_len &&
  112. !memcmp(channel_layout_map[i].name, name, name_len))
  113. return channel_layout_map[i].layout;
  114. }
  115. for (i = 0; i < FF_ARRAY_ELEMS(channel_names); i++)
  116. if (channel_names[i].name &&
  117. strlen(channel_names[i].name) == name_len &&
  118. !memcmp(channel_names[i].name, name, name_len))
  119. return (int64_t)1 << i;
  120. i = strtol(name, &end, 10);
  121. #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
  122. if (compat) {
  123. if (end - name == name_len ||
  124. (end + 1 - name == name_len && *end == 'c')) {
  125. layout = av_get_default_channel_layout(i);
  126. if (end - name == name_len) {
  127. av_log(NULL, AV_LOG_WARNING,
  128. "Single channel layout '%.*s' is interpreted as a number of channels, "
  129. "switch to the syntax '%.*sc' otherwise it will be interpreted as a "
  130. "channel layout number in a later version\n",
  131. name_len, name, name_len, name);
  132. }
  133. return layout;
  134. }
  135. } else {
  136. #endif
  137. if ((end + 1 - name == name_len && *end == 'c'))
  138. return av_get_default_channel_layout(i);
  139. #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
  140. }
  141. #endif
  142. layout = strtoll(name, &end, 0);
  143. if (end - name == name_len)
  144. return FFMAX(layout, 0);
  145. return 0;
  146. }
  147. #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
  148. uint64_t ff_get_channel_layout(const char *name, int compat)
  149. #else
  150. uint64_t av_get_channel_layout(const char *name)
  151. #endif
  152. {
  153. const char *n, *e;
  154. const char *name_end = name + strlen(name);
  155. int64_t layout = 0, layout_single;
  156. for (n = name; n < name_end; n = e + 1) {
  157. for (e = n; e < name_end && *e != '+' && *e != '|'; e++);
  158. #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
  159. layout_single = get_channel_layout_single(n, e - n, compat);
  160. #else
  161. layout_single = get_channel_layout_single(n, e - n);
  162. #endif
  163. if (!layout_single)
  164. return 0;
  165. layout |= layout_single;
  166. }
  167. return layout;
  168. }
  169. #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
  170. uint64_t av_get_channel_layout(const char *name)
  171. {
  172. return ff_get_channel_layout(name, 1);
  173. }
  174. #endif
  175. void av_bprint_channel_layout(struct AVBPrint *bp,
  176. int nb_channels, uint64_t channel_layout)
  177. {
  178. int i;
  179. if (nb_channels <= 0)
  180. nb_channels = av_get_channel_layout_nb_channels(channel_layout);
  181. for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++)
  182. if (nb_channels == channel_layout_map[i].nb_channels &&
  183. channel_layout == channel_layout_map[i].layout) {
  184. av_bprintf(bp, "%s", channel_layout_map[i].name);
  185. return;
  186. }
  187. av_bprintf(bp, "%d channels", nb_channels);
  188. if (channel_layout) {
  189. int i, ch;
  190. av_bprintf(bp, " (");
  191. for (i = 0, ch = 0; i < 64; i++) {
  192. if ((channel_layout & (UINT64_C(1) << i))) {
  193. const char *name = get_channel_name(i);
  194. if (name) {
  195. if (ch > 0)
  196. av_bprintf(bp, "+");
  197. av_bprintf(bp, "%s", name);
  198. }
  199. ch++;
  200. }
  201. }
  202. av_bprintf(bp, ")");
  203. }
  204. }
  205. void av_get_channel_layout_string(char *buf, int buf_size,
  206. int nb_channels, uint64_t channel_layout)
  207. {
  208. AVBPrint bp;
  209. av_bprint_init_for_buffer(&bp, buf, buf_size);
  210. av_bprint_channel_layout(&bp, nb_channels, channel_layout);
  211. }
  212. int av_get_channel_layout_nb_channels(uint64_t channel_layout)
  213. {
  214. return av_popcount64(channel_layout);
  215. }
  216. int64_t av_get_default_channel_layout(int nb_channels) {
  217. int i;
  218. for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++)
  219. if (nb_channels == channel_layout_map[i].nb_channels)
  220. return channel_layout_map[i].layout;
  221. return 0;
  222. }
  223. int av_get_channel_layout_channel_index(uint64_t channel_layout,
  224. uint64_t channel)
  225. {
  226. if (!(channel_layout & channel) ||
  227. av_get_channel_layout_nb_channels(channel) != 1)
  228. return AVERROR(EINVAL);
  229. channel_layout &= channel - 1;
  230. return av_get_channel_layout_nb_channels(channel_layout);
  231. }
  232. const char *av_get_channel_name(uint64_t channel)
  233. {
  234. int i;
  235. if (av_get_channel_layout_nb_channels(channel) != 1)
  236. return NULL;
  237. for (i = 0; i < 64; i++)
  238. if ((1ULL<<i) & channel)
  239. return get_channel_name(i);
  240. return NULL;
  241. }
  242. const char *av_get_channel_description(uint64_t channel)
  243. {
  244. int i;
  245. if (av_get_channel_layout_nb_channels(channel) != 1)
  246. return NULL;
  247. for (i = 0; i < FF_ARRAY_ELEMS(channel_names); i++)
  248. if ((1ULL<<i) & channel)
  249. return channel_names[i].description;
  250. return NULL;
  251. }
  252. uint64_t av_channel_layout_extract_channel(uint64_t channel_layout, int index)
  253. {
  254. int i;
  255. if (av_get_channel_layout_nb_channels(channel_layout) <= index)
  256. return 0;
  257. for (i = 0; i < 64; i++) {
  258. if ((1ULL << i) & channel_layout && !index--)
  259. return 1ULL << i;
  260. }
  261. return 0;
  262. }
  263. int av_get_standard_channel_layout(unsigned index, uint64_t *layout,
  264. const char **name)
  265. {
  266. if (index >= FF_ARRAY_ELEMS(channel_layout_map))
  267. return AVERROR_EOF;
  268. if (layout) *layout = channel_layout_map[index].layout;
  269. if (name) *name = channel_layout_map[index].name;
  270. return 0;
  271. }