]> git.sesse.net Git - ffmpeg/blob - libavutil/audioconvert.c
doc/avconv: expand documentation for the -s option.
[ffmpeg] / libavutil / audioconvert.c
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 /**
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     { "stereo",      2,  AV_CH_LAYOUT_STEREO_DOWNMIX },
72     { "2.1",         3,  AV_CH_LAYOUT_2POINT1 },
73     { "3.0",         3,  AV_CH_LAYOUT_SURROUND },
74     { "3.0(back)",   3,  AV_CH_LAYOUT_2_1 },
75     { "3.1",         4,  AV_CH_LAYOUT_3POINT1 },
76     { "4.0",         4,  AV_CH_LAYOUT_4POINT0 },
77     { "quad",        4,  AV_CH_LAYOUT_QUAD },
78     { "quad(side)",  4,  AV_CH_LAYOUT_2_2 },
79     { "4.1",         5,  AV_CH_LAYOUT_4POINT1 },
80     { "5.0",         5,  AV_CH_LAYOUT_5POINT0 },
81     { "5.0",         5,  AV_CH_LAYOUT_5POINT0_BACK },
82     { "5.1",         6,  AV_CH_LAYOUT_5POINT1 },
83     { "5.1",         6,  AV_CH_LAYOUT_5POINT1_BACK },
84     { "6.0",         6,  AV_CH_LAYOUT_6POINT0 },
85     { "6.0(front)",  6,  AV_CH_LAYOUT_6POINT0_FRONT },
86     { "hexagonal",   6,  AV_CH_LAYOUT_HEXAGONAL },
87     { "6.1",         7,  AV_CH_LAYOUT_6POINT1 },
88     { "6.1",         7,  AV_CH_LAYOUT_6POINT1_BACK },
89     { "6.1(front)",  7,  AV_CH_LAYOUT_6POINT1_FRONT },
90     { "7.0",         7,  AV_CH_LAYOUT_7POINT0 },
91     { "7.0(front)",  7,  AV_CH_LAYOUT_7POINT0_FRONT },
92     { "7.1",         8,  AV_CH_LAYOUT_7POINT1 },
93     { "7.1(wide)",   8,  AV_CH_LAYOUT_7POINT1_WIDE },
94     { "7.1(wide)",   8,  AV_CH_LAYOUT_7POINT1_WIDE_BACK },
95     { "octagonal",   8,  AV_CH_LAYOUT_OCTAGONAL },
96     { "downmix",     2,  AV_CH_LAYOUT_STEREO_DOWNMIX, },
97     { 0 }
98 };
99
100 static uint64_t get_channel_layout_single(const char *name, int name_len)
101 {
102     int i;
103     char *end;
104     int64_t layout;
105
106     for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map) - 1; 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] &&
113             strlen(channel_names[i]) == name_len &&
114             !memcmp(channel_names[i], name, name_len))
115             return (int64_t)1 << i;
116     i = strtol(name, &end, 10);
117     if (end - name == name_len ||
118         (end + 1 - name == name_len && *end  == 'c'))
119         return av_get_default_channel_layout(i);
120     layout = strtoll(name, &end, 0);
121     if (end - name == name_len)
122         return FFMAX(layout, 0);
123     return 0;
124 }
125
126 uint64_t av_get_channel_layout(const char *name)
127 {
128     const char *n, *e;
129     const char *name_end = name + strlen(name);
130     int64_t layout = 0, layout_single;
131
132     for (n = name; n < name_end; n = e + 1) {
133         for (e = n; e < name_end && *e != '+' && *e != '|'; e++);
134         layout_single = get_channel_layout_single(n, e - n);
135         if (!layout_single)
136             return 0;
137         layout |= layout_single;
138     }
139     return layout;
140 }
141
142 void av_get_channel_layout_string(char *buf, int buf_size,
143                                   int nb_channels, uint64_t channel_layout)
144 {
145     int i;
146
147     if (nb_channels <= 0)
148         nb_channels = av_get_channel_layout_nb_channels(channel_layout);
149
150     for (i = 0; channel_layout_map[i].name; i++)
151         if (nb_channels    == channel_layout_map[i].nb_channels &&
152             channel_layout == channel_layout_map[i].layout) {
153             av_strlcpy(buf, channel_layout_map[i].name, buf_size);
154             return;
155         }
156
157     snprintf(buf, buf_size, "%d channels", nb_channels);
158     if (channel_layout) {
159         int i, ch;
160         av_strlcat(buf, " (", buf_size);
161         for (i = 0, ch = 0; i < 64; i++) {
162             if ((channel_layout & (UINT64_C(1) << i))) {
163                 const char *name = get_channel_name(i);
164                 if (name) {
165                     if (ch > 0)
166                         av_strlcat(buf, "|", buf_size);
167                     av_strlcat(buf, name, buf_size);
168                 }
169                 ch++;
170             }
171         }
172         av_strlcat(buf, ")", buf_size);
173     }
174 }
175
176 int av_get_channel_layout_nb_channels(uint64_t channel_layout)
177 {
178     int count;
179     uint64_t x = channel_layout;
180     for (count = 0; x; count++)
181         x &= x-1; // unset lowest set bit
182     return count;
183 }
184
185 uint64_t av_get_default_channel_layout(int nb_channels)
186 {
187     switch(nb_channels) {
188     case 1: return AV_CH_LAYOUT_MONO;
189     case 2: return AV_CH_LAYOUT_STEREO;
190     case 3: return AV_CH_LAYOUT_SURROUND;
191     case 4: return AV_CH_LAYOUT_QUAD;
192     case 5: return AV_CH_LAYOUT_5POINT0;
193     case 6: return AV_CH_LAYOUT_5POINT1;
194     case 7: return AV_CH_LAYOUT_6POINT1;
195     case 8: return AV_CH_LAYOUT_7POINT1;
196     default: return 0;
197     }
198 }