[MPlayer-cvslog] CVS: main/libao2 ao_sun.c,1.34,1.35

Reimar Döffinger CVS syncmail at mplayerhq.hu
Thu Jan 6 23:56:56 CET 2005


CVS change done by Reimar Döffinger CVS

Update of /cvsroot/mplayer/main/libao2
In directory mail:/var2/tmp/cvs-serv27192/libao2

Modified Files:
	ao_sun.c 
Log Message:
Cleanup, removing internal conversions. Testing welcome.


Index: ao_sun.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/ao_sun.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ao_sun.c	28 Dec 2004 19:11:14 -0000	1.34
+++ ao_sun.c	6 Jan 2005 22:56:54 -0000	1.35
@@ -57,7 +57,6 @@
 static int queued_samples = 0;
 static int bytes_per_sample = 0;
 static int byte_per_sec = 0;
-static int convert_u8_s8;
 static int audio_fd = -1;
 static enum {
     RTSC_UNKNOWN = 0,
@@ -76,13 +75,14 @@
 	return AUDIO_ENCODING_ULAW;
     case AF_FORMAT_A_LAW:
 	return AUDIO_ENCODING_ALAW;
-    case AF_FORMAT_S16_BE:
-    case AF_FORMAT_S16_LE:
+    case AF_FORMAT_S16_NE:
 	return AUDIO_ENCODING_LINEAR;
 #ifdef	AUDIO_ENCODING_LINEAR8	// Missing on SunOS 5.5.1...
     case AF_FORMAT_U8:
 	return AUDIO_ENCODING_LINEAR8;
 #endif
+    case AF_FORMAT_S8:
+	return AUDIO_ENCODING_LINEAR;
 #ifdef	AUDIO_ENCODING_DVI	// Missing on NetBSD...
     case AF_FORMAT_IMA_ADPCM:
 	return AUDIO_ENCODING_DVI;
@@ -457,7 +457,7 @@
     audio_info_t info;
     int pass;
     int ok;
-    char buf[128];
+    int convert_u8_s8;
 
     setup_device_paths();
 
@@ -477,12 +477,15 @@
 
     ioctl(audio_fd, AUDIO_DRAIN, 0);
 
+    if (af2sunfmt(format) == AUDIO_ENCODING_NONE)
+      format = AF_FORMAT_S16_NE;
+
     for (ok = pass = 0; pass <= 5; pass++) { /* pass 6&7 not useful */
 
 	AUDIO_INITINFO(&info);
 	info.play.encoding = af2sunfmt(ao_data.format = format);
 	info.play.precision =
-	    (format==AF_FORMAT_S16_LE || format==AF_FORMAT_S16_BE
+	    (format==AF_FORMAT_S16_NE
 	     ? AUDIO_PRECISION_16
 	     : AUDIO_PRECISION_8);
 	info.play.channels = ao_data.channels = channels;
@@ -498,7 +501,9 @@
 	     * Try S8, and if it works, use our own U8->S8 conversion before
 	     * sending the samples to the sound driver.
 	     */
+#ifdef AUDIO_ENCODING_LINEAR8
 	    if (info.play.encoding != AUDIO_ENCODING_LINEAR8)
+#endif
 		continue;
 	    info.play.encoding = AUDIO_ENCODING_LINEAR;
 	    convert_u8_s8 = 1;
@@ -545,11 +550,15 @@
     }
 
     if (!ok) {
+	char buf[128];
 	mp_msg(MSGT_AO, MSGL_ERR, MSGTR_AO_SUN_UnsupSampleRate,
 	       channels, af_fmt2str(format, buf, 128), rate);
 	return 0;
     }
 
+    if (convert_u8_s8)
+      ao_data.format = AF_FORMAT_S8;
+
     bytes_per_sample = channels * info.play.precision / 8;
     ao_data.bps = byte_per_sec = bytes_per_sample * ao_data.samplerate;
     ao_data.outburst = byte_per_sec > 100000 ? 16384 : 8192;
@@ -628,7 +637,7 @@
     AUDIO_INITINFO(&info);
     info.play.encoding = af2sunfmt(ao_data.format);
     info.play.precision =
-	(ao_data.format==AF_FORMAT_S16_LE || ao_data.format==AF_FORMAT_S16_BE 
+	(ao_data.format==AF_FORMAT_S16_NE 
 	 ? AUDIO_PRECISION_16
 	 : AUDIO_PRECISION_8);
     info.play.channels = ao_data.channels;
@@ -696,39 +705,10 @@
 // it should round it down to outburst*n
 // return: number of bytes played
 static int play(void* data,int len,int flags){
-#if	WORDS_BIGENDIAN
-    int native_endian = AF_FORMAT_S16_BE;
-#else
-    int native_endian = AF_FORMAT_S16_LE;
-#endif
-
     if (len < ao_data.outburst) return 0;
     len /= ao_data.outburst;
     len *= ao_data.outburst;
 
-    /* 16-bit format using the 'wrong' byteorder?  swap words */
-    if ((ao_data.format == AF_FORMAT_S16_LE || ao_data.format == AF_FORMAT_S16_BE)
-	&& ao_data.format != native_endian) {
-	static void *swab_buf;
-	static int swab_len;
-	if (len > swab_len) {
-	    if (swab_buf)
-		swab_buf = realloc(swab_buf, len);
-	    else
-		swab_buf = malloc(len);
-	    swab_len = len;
-	    if (swab_buf == NULL) return 0;
-	}
-	swab(data, swab_buf, len);
-	data = swab_buf;
-    } else if (ao_data.format == AF_FORMAT_U8 && convert_u8_s8) {
-	int i;
-	unsigned char *p = data;
-
-	for (i = 0, p = data; i < len; i++, p++)
-	    *p ^= 0x80;
-    }
-
     len = write(audio_fd, data, len);
     if(len > 0) {
 	queued_samples += len / bytes_per_sample;




More information about the MPlayer-cvslog mailing list