comparison src/CoreAudio/audio.c @ 64:755a71ca3c92 trunk

[svn] - remove some spurious debugging notices
author nenolod
date Sat, 30 Sep 2006 22:03:52 -0700
parents 023b3e4147c0
children aee4ebea943a
comparison
equal deleted inserted replaced
63:023b3e4147c0 64:755a71ca3c92
86 osx_fmt == FMT_S16_BE || osx_fmt == FMT_S16_LE) 86 osx_fmt == FMT_S16_BE || osx_fmt == FMT_S16_LE)
87 { 87 {
88 bitrate *= 2; 88 bitrate *= 2;
89 } 89 }
90 90
91 //printf("osx_calc_bitrate(): %d\n",bitrate);
92
93 return bitrate; 91 return bitrate;
94 } 92 }
95 93
96 static gboolean osx_format_is_neutral(AFormat fmt) 94 static gboolean osx_format_is_neutral(AFormat fmt)
97 { 95 {
135 default: 133 default:
136 format = fmt; 134 format = fmt;
137 break; 135 break;
138 } 136 }
139 137
140 printf("osx_get_format: in: %d, out: %d\n", fmt, format);
141
142 return format; 138 return format;
143 } 139 }
144 140
145 static int osx_get_conv_format(AFormat fmt) 141 static int osx_get_conv_format(AFormat fmt)
146 { 142 {
192 break; 188 break;
193 default: 189 default:
194 format = fmt; 190 format = fmt;
195 break; 191 break;
196 } 192 }
197
198 printf("osx_conv_get_format: in: %d, out: %d\n", fmt, format);
199 193
200 return format; 194 return format;
201 } 195 }
202 196
203 197