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 /**
22 * @file
23 * audio channel layout utility functions
24 */
25
26 #include <stdint.h>
27
33
37 };
38
40 [0] = { "FL", "front left" },
41 [1] = { "FR", "front right" },
42 [2] = { "FC", "front center" },
43 [3] = { "LFE", "low frequency" },
44 [4] = { "BL", "back left" },
45 [5] = { "BR", "back right" },
46 [6] = { "FLC", "front left-of-center" },
47 [7] = { "FRC", "front right-of-center" },
48 [8] = { "BC", "back center" },
49 [9] = { "SL", "side left" },
50 [10] = { "SR", "side right" },
51 [11] = { "TC", "top center" },
52 [12] = { "TFL", "top front left" },
53 [13] = { "TFC", "top front center" },
54 [14] = { "TFR", "top front right" },
55 [15] = { "TBL", "top back left" },
56 [16] = { "TBC", "top back center" },
57 [17] = { "TBR", "top back right" },
58 [29] = { "DL", "downmix left" },
59 [30] = { "DR", "downmix right" },
60 [31] = { "WL", "wide left" },
61 [32] = { "WR", "wide right" },
62 [33] = { "SDL", "surround direct left" },
63 [34] = { "SDR", "surround direct right" },
64 [35] = { "LFE2", "low frequency 2" },
65 };
66
68 {
70 return NULL;
71 return channel_names[channel_id].
name;
72 }
73
74 static const struct {
106 };
107
108 #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
110 #else
112 #endif
113 {
114 int i;
117
122 }
124 if (channel_names[i].name &&
125 strlen(channel_names[i].name) == name_len &&
126 !memcmp(channel_names[i].name, name, name_len))
127 return (int64_t)1 << i;
128 i = strtol(name, &end, 10);
129
130 #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
131 if (compat) {
132 if (end - name == name_len ||
133 (end + 1 - name == name_len && *end == 'c')) {
135 if (end - name == name_len) {
137 "Single channel layout '%.*s' is interpreted as a number of channels, "
138 "switch to the syntax '%.*sc' otherwise it will be interpreted as a "
139 "channel layout number in a later version\n",
140 name_len, name, name_len, name);
142 }
143 }
144 } else {
145 #endif
146 if ((end + 1 - name == name_len && *end == 'c'))
148 #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
149 }
150 #endif
151
152 layout = strtoll(name, &end, 0);
153 if (end - name == name_len)
154 return FFMAX(layout, 0);
155 return 0;
156 }
157
158 #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
160 #else
162 #endif
163 {
165 const char *name_end = name + strlen(name);
166 int64_t
layout = 0, layout_single;
167
168 for (n = name; n < name_end; n = e + 1) {
169 for (e = n; e < name_end && *e != '+' && *e != '|'; e++);
170 #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
172 #else
174 #endif
175 if (!layout_single)
176 return 0;
177 layout |= layout_single;
178 }
180 }
181
182 #if FF_API_GET_CHANNEL_LAYOUT_COMPAT
184 {
186 }
187 #endif
188
191 {
192 int i;
193
194 if (nb_channels <= 0)
196
201 return;
202 }
203
205 if (channel_layout) {
206 int i, ch;
208 for (i = 0, ch = 0; i < 64; i++) {
209 if ((channel_layout & (UINT64_C(1) << i))) {
211 if (name) {
212 if (ch > 0)
215 }
216 ch++;
217 }
218 }
220 }
221 }
222
225 {
227
230 }
231
233 {
234 return av_popcount64(channel_layout);
235 }
236
238 int i;
242 return 0;
243 }
244
246 uint64_t channel)
247 {
248 if (!(channel_layout & channel) ||
251 channel_layout &= channel - 1;
253 }
254
256 {
257 int i;
259 return NULL;
260 for (i = 0; i < 64; i++)
261 if ((1ULL<<i) & channel)
263 return NULL;
264 }
265
267 {
268 int i;
270 return NULL;
272 if ((1ULL<<i) & channel)
273 return channel_names[i].description;
274 return NULL;
275 }
276
278 {
279 int i;
280
282 return 0;
283
284 for (i = 0; i < 64; i++) {
285 if ((1ULL << i) & channel_layout && !index--)
286 return 1ULL << i;
287 }
288 return 0;
289 }
290
292 const char **name)
293 {
298 return 0;
299 }