1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/***
This file is part of PulseAudio.
Copyright 2013 Intel Corporation
PulseAudio is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 2.1 of the License,
or (at your option) any later version.
PulseAudio is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with PulseAudio; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "stream-util.h"
#include <pulse/def.h>
#include <pulsecore/core-format.h>
#include <pulsecore/macro.h>
int pa_stream_get_volume_channel_map(const pa_cvolume *volume, const pa_channel_map *original_map, const pa_format_info *format,
pa_channel_map *volume_map) {
int r;
pa_channel_map volume_map_local;
pa_assert(volume);
pa_assert(format);
pa_assert(volume_map);
if (original_map) {
if (volume->channels == original_map->channels) {
*volume_map = *original_map;
return 0;
}
if (volume->channels == 1) {
pa_channel_map_init_mono(volume_map);
return 0;
}
pa_log_info("Invalid stream parameters: the volume is incompatible with the channel map.");
return -PA_ERR_INVALID;
}
r = pa_format_info_get_channel_map(format, &volume_map_local);
if (r == -PA_ERR_NOENTITY) {
if (volume->channels == 1) {
pa_channel_map_init_mono(volume_map);
return 0;
}
pa_log_info("Invalid stream parameters: multi-channel volume is set, but channel map is not.");
return -PA_ERR_INVALID;
}
if (r < 0) {
pa_log_info("Invalid channel map.");
return -PA_ERR_INVALID;
}
if (volume->channels == volume_map_local.channels) {
*volume_map = volume_map_local;
return 0;
}
if (volume->channels == 1) {
pa_channel_map_init_mono(volume_map);
return 0;
}
pa_log_info("Invalid stream parameters: the volume is incompatible with the channel map.");
return -PA_ERR_INVALID;
}
|