[Mplayer-cvslog] CVS: main/libao2 ao_macosx.c,1.1,1.2

Alex Beregszaszi alex at mplayerhq.hu
Thu May 22 18:12:57 CEST 2003


Update of /cvsroot/mplayer/main/libao2
In directory mail:/var/tmp.root/cvs-serv29956

Modified Files:
	ao_macosx.c 
Log Message:
cleanup/cosmetic patch by the author :)

Index: ao_macosx.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/ao_macosx.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ao_macosx.c	21 May 2003 21:10:55 -0000	1.1
+++ ao_macosx.c	22 May 2003 16:12:54 -0000	1.2
@@ -20,8 +20,6 @@
  *  You should have received a copy of the GNU General Public License
  *  along with GNU Make; see the file COPYING.  If not, write to
  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- *  $Id$
  */
 
 /*
@@ -37,9 +35,6 @@
  *
  *            AC-3 and MPEG audio passthrough is possible, but I don't have
  *            access to a sound card that supports it.
- */ 
-
-
  */
 
 #include <CoreAudio/AudioHardware.h>
@@ -64,6 +59,9 @@
 
 LIBAO_EXTERN(macosx)
 
+/* Prefix for all mp_msg() calls */
+#define ao_msg(a, b, c...) mp_msg(a, b, "AO: [macosx] " c)
+
 /* This is large, but best (maybe it should be even larger).
  * CoreAudio supposedly has an internal latency in the order of 2ms */
 #define NUM_BUFS 128
@@ -97,7 +95,7 @@
 
   while(len>0){
     if(ao->full_buffers==NUM_BUFS) {
-      mp_msg(MSGT_AO,MSGL_V, "ao_macosx: Buffer overrun\n");
+      ao_msg(MSGT_AO,MSGL_V, "Buffer overrun\n");
       break;
     }
 
@@ -127,7 +125,7 @@
 
   while(len>0){
     if(ao->full_buffers==0) {
-      mp_msg(MSGT_AO,MSGL_V, "ao_macosx: Buffer underrun\n");
+      ao_msg(MSGT_AO,MSGL_V, "Buffer underrun\n");
       break;
     }
 
@@ -171,12 +169,12 @@
 	case AOCONTROL_GET_VOLUME:
 	case AOCONTROL_SET_VOLUME:
 	  /* unimplemented/meaningless */
-	  return CONTROL_NA;
+	  return CONTROL_FALSE;
 	case AOCONTROL_QUERY_FORMAT:
 	  /* stick with what CoreAudio requests */
-	  return CONTROL_NA;
+	  return CONTROL_FALSE;
 	default:
-	  return CONTROL_UNKNOWN;
+	  return CONTROL_FALSE;
 	}
 	
 }
@@ -199,15 +197,15 @@
   propertySize = sizeof(ao->outputDeviceID);
   status = AudioHardwareGetProperty(kAudioHardwarePropertyDefaultOutputDevice, &propertySize, &(ao->outputDeviceID));
   if (status) {
-        mp_msg(MSGT_AO,MSGL_WARN, 
-		"ao_coreaudio: AudioHardwareGetProperty returned %d\n",
+        ao_msg(MSGT_AO,MSGL_WARN, 
+		"AudioHardwareGetProperty returned %d\n",
 		(int)status);
-	return CONTROL_ERROR;
+	return CONTROL_FALSE;
     }
     
     if (ao->outputDeviceID == kAudioDeviceUnknown) {
-        mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioHardwareGetProperty: ao->outputDeviceID is kAudioDeviceUnknown\n");
-	return CONTROL_ERROR;
+        ao_msg(MSGT_AO,MSGL_WARN, "AudioHardwareGetProperty: ao->outputDeviceID is kAudioDeviceUnknown\n");
+	return CONTROL_FALSE;
     }
     
     /* get default output format
@@ -216,36 +214,48 @@
     propertySize = sizeof(ao->outputStreamBasicDescription);
     status = AudioDeviceGetProperty(ao->outputDeviceID, 0, false, kAudioDevicePropertyStreamFormat, &propertySize, &ao->outputStreamBasicDescription);
     if (status) {
-        mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioDeviceGetProperty returned %d when getting kAudioDevicePropertyStreamFormat\n", (int)status);
-	return CONTROL_ERROR;
+        ao_msg(MSGT_AO,MSGL_WARN, "AudioDeviceGetProperty returned %d when getting kAudioDevicePropertyStreamFormat\n", (int)status);
+	return CONTROL_FALSE;
     }
 
-    mp_msg(MSGT_AO,MSGL_V, "hardware format...\n");
-    mp_msg(MSGT_AO,MSGL_V, "%f mSampleRate\n", ao->outputStreamBasicDescription.mSampleRate);
-    mp_msg(MSGT_AO,MSGL_V, " %c%c%c%c mFormatID\n", 
+    ao_msg(MSGT_AO,MSGL_V, "hardware format...\n");
+    ao_msg(MSGT_AO,MSGL_V, "%f mSampleRate\n", ao->outputStreamBasicDescription.mSampleRate);
+    ao_msg(MSGT_AO,MSGL_V, " %c%c%c%c mFormatID\n", 
 	    (int)(ao->outputStreamBasicDescription.mFormatID & 0xff000000) >> 24,
 	    (int)(ao->outputStreamBasicDescription.mFormatID & 0x00ff0000) >> 16,
 	    (int)(ao->outputStreamBasicDescription.mFormatID & 0x0000ff00) >>  8,
 	    (int)(ao->outputStreamBasicDescription.mFormatID & 0x000000ff) >>  0);
-    mp_msg(MSGT_AO,MSGL_V, "%5d mBytesPerPacket\n",
+    ao_msg(MSGT_AO,MSGL_V, "%5d mBytesPerPacket\n",
 	    (int)ao->outputStreamBasicDescription.mBytesPerPacket);
-    mp_msg(MSGT_AO,MSGL_V, "%5d mFramesPerPacket\n",
+    ao_msg(MSGT_AO,MSGL_V, "%5d mFramesPerPacket\n",
 	    (int)ao->outputStreamBasicDescription.mFramesPerPacket);
-    mp_msg(MSGT_AO,MSGL_V, "%5d mBytesPerFrame\n",
+    ao_msg(MSGT_AO,MSGL_V, "%5d mBytesPerFrame\n",
 	    (int)ao->outputStreamBasicDescription.mBytesPerFrame);
-    mp_msg(MSGT_AO,MSGL_V, "%5d mChannelsPerFrame\n",
+    ao_msg(MSGT_AO,MSGL_V, "%5d mChannelsPerFrame\n",
 	    (int)ao->outputStreamBasicDescription.mChannelsPerFrame);
 
     /* get requested buffer length */
     propertySize = sizeof(ao->buffer_len);
     status = AudioDeviceGetProperty(ao->outputDeviceID, 0, false, kAudioDevicePropertyBufferSize, &propertySize, &ao->buffer_len);
     if (status) {
-        mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioDeviceGetProperty returned %d when getting kAudioDevicePropertyBufferSize\n", (int)status);
-	return CONTROL_ERROR;
+        ao_msg(MSGT_AO,MSGL_WARN, "AudioDeviceGetProperty returned %d when getting kAudioDevicePropertyBufferSize\n", (int)status);
+	return CONTROL_FALSE;
+    }
+    ao_msg(MSGT_AO,MSGL_V, "%5d ao->buffer_len\n", (int)ao->buffer_len);
+
+    /* FIXME:
+     *
+     * Resampling of 32-bit float audio is broken in MPlayer. Refuse to 
+     * handle anything other than the native format until this is fixed
+     * or this module is rewritten, whichever comes first.
+     */
+    if (ao_data.samplerate == ao->outputStreamBasicDescription.mSampleRate) {
+      ao_data.samplerate = (int)ao->outputStreamBasicDescription.mSampleRate;
+    } else {
+      ao_msg(MSGT_AO,MSGL_WARN, "Resampling not supported yet.\n");
+      return 0;
     }
-    mp_msg(MSGT_AO,MSGL_V, "%5d ao->buffer_len\n", (int)ao->buffer_len);
 
-    ao_data.samplerate = (int)ao->outputStreamBasicDescription.mSampleRate;
     ao_data.channels = ao->outputStreamBasicDescription.mChannelsPerFrame;
     ao_data.outburst = ao_data.buffersize = ao->buffer_len;
     ao_data.bps = 
@@ -253,19 +263,20 @@
 
     if (ao->outputStreamBasicDescription.mFormatID == kAudioFormatLinearPCM) {
       uint32_t flags = ao->outputStreamBasicDescription.mFormatFlags;
-	if (flags & kAudioFormatFlagIsFloat) {
-	  ao_data.format = AFMT_FLOAT;
-	} else {
-	  mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: Unsupported audio output "
-		 "format. Please report this to the developers\n",
-		 (int)status);
-	}
-
+      if (flags & kAudioFormatFlagIsFloat) {
+	ao_data.format = AFMT_FLOAT;
+      } else {
+	ao_msg(MSGT_AO,MSGL_WARN, "Unsupported audio output "
+	       "format %d. Please report this to the developer\n",
+	       (int)status);
+	return CONTROL_FALSE;
+      }
+      
     } else {
       /* TODO: handle AFMT_AC3, AFMT_MPEG & friends */
-      mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: Default Audio Device doesn't "
+      ao_msg(MSGT_AO,MSGL_WARN, "Default Audio Device doesn't "
 	     "support Linear PCM!\n");
-      return CONTROL_ERROR;
+      return CONTROL_FALSE;
     }
   
     /* Allocate ring-buffer memory */
@@ -280,16 +291,16 @@
     /* Set the IO proc that CoreAudio will call when it needs data */
     status = AudioDeviceAddIOProc(ao->outputDeviceID, audioDeviceIOProc, NULL);
     if (status) {
-        mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioDeviceAddIOProc returned %d\n", (int)status);
-	return CONTROL_ERROR;
+        ao_msg(MSGT_AO,MSGL_WARN, "AudioDeviceAddIOProc returned %d\n", (int)status);
+	return CONTROL_FALSE;
     }
  
     /* Start callback */
     status = AudioDeviceStart(ao->outputDeviceID, audioDeviceIOProc);
     if (status) {
-      mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioDeviceStart returned %d\n",
+      ao_msg(MSGT_AO,MSGL_WARN, "AudioDeviceStart returned %d\n",
 	     (int)status);
-      return CONTROL_ERROR;
+      return CONTROL_FALSE;
     }
     
     return CONTROL_OK;
@@ -317,9 +328,10 @@
   ao->full_buffers=0;
   ao->buffered_bytes=0;
   
+  /* zero output buffer */
   for (i = 0; i < NUM_BUFS; i++)
     bzero(ao->buffer[i], ao->buffer_len);
-	 
+
   pthread_mutex_unlock(&ao->buffer_mutex);
        
   return;
@@ -333,8 +345,7 @@
 }
 
 
-/* return delay until audio is played
- * FIXME */
+/* return delay until audio is played */
 static float get_delay()
 {
   return (float)(ao->buffered_bytes)/(float)ao_data.bps;
@@ -351,7 +362,7 @@
 
   status = AudioDeviceRemoveIOProc(ao->outputDeviceID, audioDeviceIOProc);
   if (status)
-    mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioDeviceRemoveIOProc "
+    ao_msg(MSGT_AO,MSGL_WARN, "AudioDeviceRemoveIOProc "
 	   "returned %d\n", (int)status);
 
   for(i=0;i<NUM_BUFS;i++) free(ao->buffer[i]);
@@ -367,7 +378,7 @@
   /* stop callback */
   status = AudioDeviceStop(ao->outputDeviceID, audioDeviceIOProc);
   if (status)
-    mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioDeviceStop returned %d\n",
+    ao_msg(MSGT_AO,MSGL_WARN, "AudioDeviceStop returned %d\n",
 	   (int)status);
 }
 
@@ -377,8 +388,6 @@
 {
   OSErr status = AudioDeviceStart(ao->outputDeviceID, audioDeviceIOProc);
   if (status)
-    mp_msg(MSGT_AO,MSGL_WARN, "ao_coreaudio: AudioDeviceStart returned %d\n",
+    ao_msg(MSGT_AO,MSGL_WARN, "AudioDeviceStart returned %d\n",
 	   (int)status);
 }
-
-



More information about the MPlayer-cvslog mailing list