changeset 64:755a71ca3c92 trunk

[svn] - remove some spurious debugging notices
author nenolod
date Sat, 30 Sep 2006 22:03:52 -0700
parents 023b3e4147c0
children d54fa96988b3
files ChangeLog src/CoreAudio/audio.c
diffstat 2 files changed, 10 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Sep 30 21:53:30 2006 -0700
+++ b/ChangeLog	Sat Sep 30 22:03:52 2006 -0700
@@ -1,3 +1,13 @@
+2006-10-01 04:53:30 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [126]
+  - implement osx_format_is_neutral(), returns TRUE if endianness of the format is neutral,
+    otherwise FALSE if conversion is needed.
+  - only select a conversion strategy if endianness is not neutral
+  
+  trunk/src/CoreAudio/audio.c |   33 ++++++++++++++++++++++++++-------
+  1 file changed, 26 insertions(+), 7 deletions(-)
+
+
 2006-10-01 04:40:46 +0000  William Pitcock <nenolod@nenolod.net>
   revision [124]
   - be a little smarter about this
--- a/src/CoreAudio/audio.c	Sat Sep 30 21:53:30 2006 -0700
+++ b/src/CoreAudio/audio.c	Sat Sep 30 22:03:52 2006 -0700
@@ -88,8 +88,6 @@
 		bitrate *= 2;
 	}
 
-	//printf("osx_calc_bitrate(): %d\n",bitrate);
-
 	return bitrate;
 }
 
@@ -137,8 +135,6 @@
 			break;
 	}
 
-	printf("osx_get_format: in: %d, out: %d\n", fmt, format);
-
 	return format;
 }
 
@@ -195,8 +191,6 @@
 			break;
 	}
 
-	printf("osx_conv_get_format: in: %d, out: %d\n", fmt, format);
-
 	return format;
 }