mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
add new API function pa_channel_map_compatible()
This commit is contained in:
parent
5a9a6021f1
commit
cb0c97dae7
2 changed files with 11 additions and 0 deletions
|
|
@ -560,3 +560,10 @@ int pa_channel_map_valid(const pa_channel_map *map) {
|
|||
|
||||
return 1;
|
||||
}
|
||||
|
||||
int pa_channel_map_compatible(const pa_channel_map *map, const pa_sample_spec *ss) {
|
||||
pa_assert(map);
|
||||
pa_assert(ss);
|
||||
|
||||
return map->channels == ss->channels;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue