mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
* modify pa_channel_map_init_auto() to take an extra argument specifying the standard to use (ALSA, AIFF, ...)
* add some more validity checks to pa_source_new(),pa_sink_new(),pa_sink_input_new(),pa_source_output_new() git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@888 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
c63cc7bb79
commit
4b6ab291a7
27 changed files with 237 additions and 191 deletions
|
|
@ -10,10 +10,18 @@ int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char *argv[]) {
|
|||
char cm[PA_CHANNEL_MAP_SNPRINT_MAX];
|
||||
pa_channel_map map, map2;
|
||||
|
||||
pa_channel_map_init_auto(&map, 5);
|
||||
pa_channel_map_init_auto(&map, 6, PA_CHANNEL_MAP_AIFF);
|
||||
|
||||
fprintf(stderr, "map: <%s>\n", pa_channel_map_snprint(cm, sizeof(cm), &map));
|
||||
|
||||
pa_channel_map_init_auto(&map, 6, PA_CHANNEL_MAP_AUX);
|
||||
|
||||
fprintf(stderr, "map: <%s>\n", pa_channel_map_snprint(cm, sizeof(cm), &map));
|
||||
|
||||
pa_channel_map_init_auto(&map, 6, PA_CHANNEL_MAP_ALSA);
|
||||
|
||||
fprintf(stderr, "map: <%s>\n", pa_channel_map_snprint(cm, sizeof(cm), &map));
|
||||
|
||||
pa_channel_map_parse(&map2, cm);
|
||||
|
||||
assert(pa_channel_map_equal(&map, &map2));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue