]> git.sesse.net Git - ffmpeg/blob - libavutil/audioconvert.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavutil / audioconvert.c
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 conversion routines
24  */
25
26 #include "avstring.h"
27 #include "avutil.h"
28 #include "audioconvert.h"
29
30 static const char * const channel_names[] = {
31     [0]  = "FL",        /* front left */
32     [1]  = "FR",        /* front right */
33     [2]  = "FC",        /* front center */
34     [3]  = "LFE",       /* low frequency */
35     [4]  = "BL",        /* back left */
36     [5]  = "BR",        /* back right */
37     [6]  = "FLC",       /* front left-of-center  */
38     [7]  = "FRC",       /* front right-of-center */
39     [8]  = "BC",        /* back-center */
40     [9]  = "SL",        /* side left */
41     [10] = "SR",        /* side right */
42     [11] = "TC",        /* top center */
43     [12] = "TFL",       /* top front left */
44     [13] = "TFC",       /* top front center */
45     [14] = "TFR",       /* top front right */
46     [15] = "TBL",       /* top back left */
47     [16] = "TBC",       /* top back center */
48     [17] = "TBR",       /* top back right */
49     [29] = "DL",        /* downmix left */
50     [30] = "DR",        /* downmix right */
51     [31] = "WL",        /* wide left */
52     [32] = "WR",        /* wide right */
53     [33] = "SDL",       /* surround direct left */
54     [34] = "SDR",       /* surround direct right */
55 };
56
57 static const char *get_channel_name(int channel_id)
58 {
59     if (channel_id < 0 || channel_id >= FF_ARRAY_ELEMS(channel_names))
60         return NULL;
61     return channel_names[channel_id];
62 }
63
64 static const struct {
65     const char *name;
66     int         nb_channels;
67     uint64_t     layout;
68 } channel_layout_map[] = {
69     { "mono",        1,  AV_CH_LAYOUT_MONO },
70     { "stereo",      2,  AV_CH_LAYOUT_STEREO },
71     { "2.1",         3,  AV_CH_LAYOUT_2POINT1 },
72     { "3.0",         3,  AV_CH_LAYOUT_SURROUND },
73     { "3.0(back)",   3,  AV_CH_LAYOUT_2_1 },
74     { "4.0",         4,  AV_CH_LAYOUT_4POINT0 },
75     { "quad",        4,  AV_CH_LAYOUT_QUAD },
76     { "quad(side)",  4,  AV_CH_LAYOUT_2_2 },
77     { "3.1",         4,  AV_CH_LAYOUT_3POINT1 },
78     { "5.0",         5,  AV_CH_LAYOUT_5POINT0_BACK },
79     { "5.0(side)",   5,  AV_CH_LAYOUT_5POINT0 },
80     { "4.1",         5,  AV_CH_LAYOUT_4POINT1 },
81     { "5.1",         6,  AV_CH_LAYOUT_5POINT1_BACK },
82     { "5.1(side)",   6,  AV_CH_LAYOUT_5POINT1 },
83     { "6.0",         6,  AV_CH_LAYOUT_6POINT0 },
84     { "6.0(front)",  6,  AV_CH_LAYOUT_6POINT0_FRONT },
85     { "hexagonal",   6,  AV_CH_LAYOUT_HEXAGONAL },
86     { "6.1",         7,  AV_CH_LAYOUT_6POINT1 },
87     { "6.1",         7,  AV_CH_LAYOUT_6POINT1_BACK },
88     { "6.1(front)",  7,  AV_CH_LAYOUT_6POINT1_FRONT },
89     { "7.0",         7,  AV_CH_LAYOUT_7POINT0 },
90     { "7.0(front)",  7,  AV_CH_LAYOUT_7POINT0_FRONT },
91     { "7.1",         8,  AV_CH_LAYOUT_7POINT1 },
92     { "7.1(wide)",   8,  AV_CH_LAYOUT_7POINT1_WIDE },
93     { "octagonal",   8,  AV_CH_LAYOUT_OCTAGONAL },
94     { "downmix",     2,  AV_CH_LAYOUT_STEREO_DOWNMIX, },
95 };
96
97 static uint64_t get_channel_layout_single(const char *name, int name_len)
98 {
99     int i;
100     char *end;
101     int64_t layout;
102
103     for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++) {
104         if (strlen(channel_layout_map[i].name) == name_len &&
105             !memcmp(channel_layout_map[i].name, name, name_len))
106             return channel_layout_map[i].layout;
107     }
108     for (i = 0; i < FF_ARRAY_ELEMS(channel_names); i++)
109         if (channel_names[i] &&
110             strlen(channel_names[i]) == name_len &&
111             !memcmp(channel_names[i], name, name_len))
112             return (int64_t)1 << i;
113     i = strtol(name, &end, 10);
114     if (end - name == name_len ||
115         (end + 1 - name == name_len && *end  == 'c'))
116         return av_get_default_channel_layout(i);
117     layout = strtoll(name, &end, 0);
118     if (end - name == name_len)
119         return FFMAX(layout, 0);
120     return 0;
121 }
122
123 uint64_t av_get_channel_layout(const char *name)
124 {
125     const char *n, *e;
126     const char *name_end = name + strlen(name);
127     int64_t layout = 0, layout_single;
128
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
139 void av_get_channel_layout_string(char *buf, int buf_size,
140                                   int nb_channels, uint64_t channel_layout)
141 {
142     int i;
143
144     if (nb_channels <= 0)
145         nb_channels = av_get_channel_layout_nb_channels(channel_layout);
146
147     for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++)
148         if (nb_channels    == channel_layout_map[i].nb_channels &&
149             channel_layout == channel_layout_map[i].layout) {
150             av_strlcpy(buf, channel_layout_map[i].name, buf_size);
151             return;
152         }
153
154     snprintf(buf, buf_size, "%d channels", nb_channels);
155     if (channel_layout) {
156         int i, ch;
157         av_strlcat(buf, " (", buf_size);
158         for (i = 0, ch = 0; i < 64; i++) {
159             if ((channel_layout & (UINT64_C(1) << i))) {
160                 const char *name = get_channel_name(i);
161                 if (name) {
162                     if (ch > 0)
163                         av_strlcat(buf, "+", buf_size);
164                     av_strlcat(buf, name, buf_size);
165                 }
166                 ch++;
167             }
168         }
169         av_strlcat(buf, ")", buf_size);
170     }
171 }
172
173 int av_get_channel_layout_nb_channels(uint64_t channel_layout)
174 {
175     int count;
176     uint64_t x = channel_layout;
177     for (count = 0; x; count++)
178         x &= x-1; // unset lowest set bit
179     return count;
180 }
181
182 int64_t av_get_default_channel_layout(int nb_channels) {
183     int i;
184     for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++)
185         if (nb_channels == channel_layout_map[i].nb_channels)
186             return channel_layout_map[i].layout;
187     return 0;
188 }