summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-07-15 08:27:14 +0200
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-07-22 21:53:18 +0200
commitaf6ad6717fb1ef36f2dc1777ec8d46396ef4dad1 (patch)
treeac4042cc14951b0ff760d9a0abe3c83abc4085db /audio
parentdf39121206c8d3d3d87b1bfb3ad7afa850bcecf1 (diff)
downloadmpv-af6ad6717fb1ef36f2dc1777ec8d46396ef4dad1.tar.bz2
mpv-af6ad6717fb1ef36f2dc1777ec8d46396ef4dad1.tar.xz
ao_coreaudio: reduce verbosity of the chmapping code
Diffstat (limited to 'audio')
-rw-r--r--audio/out/ao_coreaudio_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/out/ao_coreaudio_utils.c b/audio/out/ao_coreaudio_utils.c
index 195d285b3e..466cbdae72 100644
--- a/audio/out/ao_coreaudio_utils.c
+++ b/audio/out/ao_coreaudio_utils.c
@@ -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;