]> git.sesse.net Git - ffmpeg/blob - libavutil/audioconvert.c
Add channel names to channel_names[] array for channels added in b2890f5
[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     { "5.1+downmix", 8,  AV_CH_LAYOUT_5POINT1|AV_CH_LAYOUT_STEREO_DOWNMIX, },
85     { "6.0",         6,  AV_CH_LAYOUT_6POINT0 },
86     { "6.0(front)",  6,  AV_CH_LAYOUT_6POINT0_FRONT },
87     { "hexagonal",   6,  AV_CH_LAYOUT_HEXAGONAL },
88     { "6.1",         7,  AV_CH_LAYOUT_6POINT1 },
89     { "6.1",         7,  AV_CH_LAYOUT_6POINT1_BACK },
90     { "6.1(front)",  7,  AV_CH_LAYOUT_6POINT1_FRONT },
91     { "6.1+downmix", 9,  AV_CH_LAYOUT_6POINT1|AV_CH_LAYOUT_STEREO_DOWNMIX, },
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 },
96     { "7.1(wide)",   8,  AV_CH_LAYOUT_7POINT1_WIDE_BACK },
97     { "7.1+downmix", 10, AV_CH_LAYOUT_7POINT1|AV_CH_LAYOUT_STEREO_DOWNMIX, },
98     { "octagonal",   8,  AV_CH_LAYOUT_OCTAGONAL },
99     { 0 }
100 };
101
102 uint64_t av_get_channel_layout(const char *name)
103 {
104     int i = 0;
105     do {
106         if (!strcmp(channel_layout_map[i].name, name))
107             return channel_layout_map[i].layout;
108         i++;
109     } while (channel_layout_map[i].name);
110
111     return 0;
112 }
113
114 void av_get_channel_layout_string(char *buf, int buf_size,
115                                   int nb_channels, uint64_t channel_layout)
116 {
117     int i;
118
119     if (nb_channels <= 0)
120         nb_channels = av_get_channel_layout_nb_channels(channel_layout);
121
122     for (i = 0; channel_layout_map[i].name; i++)
123         if (nb_channels    == channel_layout_map[i].nb_channels &&
124             channel_layout == channel_layout_map[i].layout) {
125             av_strlcpy(buf, channel_layout_map[i].name, buf_size);
126             return;
127         }
128
129     snprintf(buf, buf_size, "%d channels", nb_channels);
130     if (channel_layout) {
131         int i, ch;
132         av_strlcat(buf, " (", buf_size);
133         for (i = 0, ch = 0; i < 64; i++) {
134             if ((channel_layout & (UINT64_C(1) << i))) {
135                 const char *name = get_channel_name(i);
136                 if (name) {
137                     if (ch > 0)
138                         av_strlcat(buf, "|", buf_size);
139                     av_strlcat(buf, name, buf_size);
140                 }
141                 ch++;
142             }
143         }
144         av_strlcat(buf, ")", buf_size);
145     }
146 }
147
148 int av_get_channel_layout_nb_channels(uint64_t channel_layout)
149 {
150     int count;
151     uint64_t x = channel_layout;
152     for (count = 0; x; count++)
153         x &= x-1; // unset lowest set bit
154     return count;
155 }