]> git.sesse.net Git - ffmpeg/blob - libavutil/audioconvert.c
sws/pixfmt/pixdesc: add support for yuva444p
[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 };
52
53 static const char *get_channel_name(int channel_id)
54 {
55     if (channel_id < 0 || channel_id >= FF_ARRAY_ELEMS(channel_names))
56         return NULL;
57     return channel_names[channel_id];
58 }
59
60 static const struct {
61     const char *name;
62     int         nb_channels;
63     uint64_t     layout;
64 } channel_layout_map[] = {
65     { "mono",        1,  AV_CH_LAYOUT_MONO },
66     { "stereo",      2,  AV_CH_LAYOUT_STEREO },
67     { "2.1",         3,  AV_CH_LAYOUT_2POINT1 },
68     { "4.0",         4,  AV_CH_LAYOUT_4POINT0 },
69     { "quad",        4,  AV_CH_LAYOUT_QUAD },
70     { "5.0",         5,  AV_CH_LAYOUT_5POINT0_BACK },
71     { "5.0(side)",   5,  AV_CH_LAYOUT_5POINT0 },
72     { "5.1",         6,  AV_CH_LAYOUT_5POINT1_BACK },
73     { "5.1(side)",   6,  AV_CH_LAYOUT_5POINT1 },
74     { "7.1",         8,  AV_CH_LAYOUT_7POINT1 },
75     { "7.1(wide)",   8,  AV_CH_LAYOUT_7POINT1_WIDE },
76     { "downmix",     2,  AV_CH_LAYOUT_STEREO_DOWNMIX, },
77     { 0 }
78 };
79
80 static uint64_t get_channel_layout_single(const char *name, int name_len)
81 {
82     int i;
83     char *end;
84     int64_t layout;
85
86     for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map) - 1; i++) {
87         if (strlen(channel_layout_map[i].name) == name_len &&
88             !memcmp(channel_layout_map[i].name, name, name_len))
89             return channel_layout_map[i].layout;
90     }
91     for (i = 0; i < FF_ARRAY_ELEMS(channel_names); i++)
92         if (channel_names[i] &&
93             strlen(channel_names[i]) == name_len &&
94             !memcmp(channel_names[i], name, name_len))
95             return (int64_t)1 << i;
96     i = strtol(name, &end, 10);
97     if (end - name == name_len ||
98         (end + 1 - name == name_len && *end  == 'c'))
99         return av_get_default_channel_layout(i);
100     layout = strtoll(name, &end, 0);
101     if (end - name == name_len)
102         return FFMAX(layout, 0);
103     return 0;
104 }
105
106 uint64_t av_get_channel_layout(const char *name)
107 {
108     const char *n, *e;
109     const char *name_end = name + strlen(name);
110     int64_t layout = 0, layout_single;
111
112     for (n = name; n < name_end; n = e + 1) {
113         for (e = n; e < name_end && *e != '+' && *e != '|'; e++);
114         layout_single = get_channel_layout_single(n, e - n);
115         if (!layout_single)
116             return 0;
117         layout |= layout_single;
118     }
119     return layout;
120 }
121
122 void av_get_channel_layout_string(char *buf, int buf_size,
123                                   int nb_channels, uint64_t channel_layout)
124 {
125     int i;
126
127     if (nb_channels <= 0)
128         nb_channels = av_get_channel_layout_nb_channels(channel_layout);
129
130     for (i = 0; channel_layout_map[i].name; i++)
131         if (nb_channels    == channel_layout_map[i].nb_channels &&
132             channel_layout == channel_layout_map[i].layout) {
133             av_strlcpy(buf, channel_layout_map[i].name, buf_size);
134             return;
135         }
136
137     snprintf(buf, buf_size, "%d channels", nb_channels);
138     if (channel_layout) {
139         int i, ch;
140         av_strlcat(buf, " (", buf_size);
141         for (i = 0, ch = 0; i < 64; i++) {
142             if ((channel_layout & (UINT64_C(1) << i))) {
143                 const char *name = get_channel_name(i);
144                 if (name) {
145                     if (ch > 0)
146                         av_strlcat(buf, "+", buf_size);
147                     av_strlcat(buf, name, buf_size);
148                 }
149                 ch++;
150             }
151         }
152         av_strlcat(buf, ")", buf_size);
153     }
154 }
155
156 int av_get_channel_layout_nb_channels(uint64_t channel_layout)
157 {
158     int count;
159     uint64_t x = channel_layout;
160     for (count = 0; x; count++)
161         x &= x-1; // unset lowest set bit
162     return count;
163 }
164
165 int64_t av_get_default_channel_layout(int nb_channels) {
166     int i;
167     for (i = 0; channel_layout_map[i].name; i++)
168         if (nb_channels == channel_layout_map[i].nb_channels)
169             return channel_layout_map[i].layout;
170     return 0;
171 }