]> git.sesse.net Git - ffmpeg/blob - libavcore/audioconvert.c
configure: simplify exit traps
[ffmpeg] / libavcore / 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 "libavutil/avstring.h"
27 #include "audioconvert.h"
28
29 static const char * const channel_names[] = {
30     "FL", "FR", "FC", "LFE", "BL",  "BR",  "FLC", "FRC",
31     "BC", "SL", "SR", "TC",  "TFL", "TFC", "TFR", "TBL",
32     "TBC", "TBR",
33     [29] = "DL",
34     [30] = "DR",
35 };
36
37 static const char *get_channel_name(int channel_id)
38 {
39     if (channel_id < 0 || channel_id >= FF_ARRAY_ELEMS(channel_names))
40         return NULL;
41     return channel_names[channel_id];
42 }
43
44 static const struct {
45     const char *name;
46     int         nb_channels;
47     int64_t     layout;
48 } channel_layout_map[] = {
49     { "mono",        1,  AV_CH_LAYOUT_MONO },
50     { "stereo",      2,  AV_CH_LAYOUT_STEREO },
51     { "4.0",         4,  AV_CH_LAYOUT_4POINT0 },
52     { "quad",        4,  AV_CH_LAYOUT_QUAD },
53     { "5.0",         5,  AV_CH_LAYOUT_5POINT0 },
54     { "5.0",         5,  AV_CH_LAYOUT_5POINT0_BACK },
55     { "5.1",         6,  AV_CH_LAYOUT_5POINT1 },
56     { "5.1",         6,  AV_CH_LAYOUT_5POINT1_BACK },
57     { "5.1+downmix", 8,  AV_CH_LAYOUT_5POINT1|AV_CH_LAYOUT_STEREO_DOWNMIX, },
58     { "7.1",         8,  AV_CH_LAYOUT_7POINT1 },
59     { "7.1(wide)",   8,  AV_CH_LAYOUT_7POINT1_WIDE },
60     { "7.1+downmix", 10, AV_CH_LAYOUT_7POINT1|AV_CH_LAYOUT_STEREO_DOWNMIX, },
61     { 0 }
62 };
63
64 int64_t av_get_channel_layout(const char *name)
65 {
66     int i = 0;
67     do {
68         if (!strcmp(channel_layout_map[i].name, name))
69             return channel_layout_map[i].layout;
70         i++;
71     } while (channel_layout_map[i].name);
72
73     return 0;
74 }
75
76 void av_get_channel_layout_string(char *buf, int buf_size,
77                                   int nb_channels, int64_t channel_layout)
78 {
79     int i;
80
81     if (nb_channels <= 0)
82         nb_channels = av_get_channel_layout_nb_channels(channel_layout);
83
84     for (i = 0; channel_layout_map[i].name; i++)
85         if (nb_channels    == channel_layout_map[i].nb_channels &&
86             channel_layout == channel_layout_map[i].layout) {
87             av_strlcpy(buf, channel_layout_map[i].name, buf_size);
88             return;
89         }
90
91     snprintf(buf, buf_size, "%d channels", nb_channels);
92     if (channel_layout) {
93         int i,ch;
94         av_strlcat(buf, " (", buf_size);
95         for(i=0,ch=0; i<64; i++) {
96             if ((channel_layout & (1L<<i))) {
97                 const char *name = get_channel_name(i);
98                 if (name) {
99                     if (ch>0) av_strlcat(buf, "|", buf_size);
100                     av_strlcat(buf, name, buf_size);
101                 }
102                 ch++;
103             }
104         }
105         av_strlcat(buf, ")", buf_size);
106     }
107 }
108
109 int av_get_channel_layout_nb_channels(int64_t channel_layout)
110 {
111     int count;
112     uint64_t x = channel_layout;
113     for (count = 0; x; count++)
114         x &= x-1; // unset lowest set bit
115     return count;
116 }