ao_coreaudio: reduce verbosity of the chmapping code

This commit is contained in:
Stefano Pigozzi 2013-07-15 08:27:14 +02:00
parent df39121206
commit af6ad6717f
1 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ bool ca_bitmap_from_ch_desc(AudioChannelLayout *layout, uint32_t *bitmap)
if (label == kAudioChannelLabel_UseCoordinates ||
label == kAudioChannelLabel_Unknown ||
label > kAudioChannelLabel_TopBackRight) {
ca_msg(MSGL_WARN,
ca_msg(MSGL_V,
"channel label=%d unusable to build channel "
"bitmap, skipping layout\n", label);
all_channels_valid = false;
@ -413,7 +413,7 @@ bool ca_bitmap_from_ch_tag(AudioChannelLayout *layout, uint32_t *bitmap)
sizeof(AudioChannelLayoutTag), &tag,
&bitmap_size, bitmap);
if (err != noErr) {
ca_msg(MSGL_WARN,
ca_msg(MSGL_V,
"channel layout tag=%d unusable to build channel "
"bitmap, skipping layout\n", tag);
return false;