annotate src/linuxplay.c @ 129:e292c9648bb9 xemacs-20-1p3

Import from CVS: tag xemacs-20-1p3
author cvs
date Mon, 13 Aug 2007 09:28:38 +0200
parents 9b50b4588a93
children 538048ae2ab8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* linuxplay.c - play a sound file on the speaker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ** Copyright (C) 1995,96 by Markus Gutschke (gutschk@math.uni-muenster.de)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ** This is version 1.3 of linuxplay.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ** Parts of this code were inspired by sunplay.c, which is copyright 1989 by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ** Jef Poskanzer and 1991,92 by Jamie Zawinski; c.f. sunplay.c for further
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ** information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ** Permission to use, copy, modify, and distribute this software and its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ** documentation for any purpose and without fee is hereby granted, provided
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ** that the above copyright notice appear in all copies and that both that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ** copyright notice and this permission notice appear in supporting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ** documentation. This software is provided "as is" without express or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ** implied warranty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ** Changelog:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ** 1.0 -- first release; supports SunAudio, Wave and RAW file formats
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ** detects (and rejects) VOC file format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ** tested with PC-Speaker driver only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ** 1.1 -- fixed bug with playback of stereo Wave files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ** fixed VOC file detection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ** fixed mono/8bit conversion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ** cleaned up mixer programming (c.f. VoxWare-SDK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ** tested with PC-Speaker driver and with PAS16 soundcard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ** 1.2 -- first (incompatible) attempt at fixing reliable signal handling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ** 1.3 -- changed signal handling to use reliable signals; this is done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ** by including "syssignal.h"; it fixes nasty program crashes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ** when using native sound in TTY mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ** added support for DEC audio file format (this is basically the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ** same as Sun audio, but uses little endian format, instead).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ** strip the header from Sun audio and DEC audio files in order to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ** prevent noise at beginning of samples (thanks to Thomas Pundt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ** <pundtt@math.uni-muenster.de> for pointing out this bug and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ** providing information on the file format).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ** added a few more conversion routines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ** made the code even more tolerant to the limits imposed by some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ** soundcards and try to accept soundfiles even if they are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ** fully conformant to the standard.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ** 1.4 -- increased header size to 256; I hope there is no sample software
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ** that requires this much.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ** added code for converting from signed to unsigned format as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ** some soundcards cannot handle signed 8bit data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #define HEADERSZ 256 /* has to be at least as big as the biggest header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #define SNDBUFSZ 2048 /* has to be at least as big as HEADERSZ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 /* XEmacs beta testers say: undef this by default. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #undef NOVOLUMECTRLFORMULAW /* Changing the volume for uLaw-encoded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 samples sounds very poor; possibly,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 this is true only for the PC-Snd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 driver, so undefine this symbol at your
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 discretion */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #ifdef HAVE_CONFIG_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #include <errno.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 #include <fcntl.h>
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
64 #ifdef __FreeBSD__
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
65 # include <machine/soundcard.h>
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
66 #elif defined(__bsdi__)
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
67 # include <sys/soundcard.h>
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
68 #else
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
69 # include <linux/soundcard.h>
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
70 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #include <stdlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #include <string.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #include <sys/fcntl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #include <sys/file.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #include <sys/ioctl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #include <sys/signal.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #include <unistd.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #ifdef LINUXPLAYSTANDALONE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #define perror(str) fprintf(stderr,"audio: %s %s\n",str,strerror(errno));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #define warn(str) fprintf(stderr,"audio: %s\n",str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 #include "syssignal.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #define perror(str) message("audio: %s, %s ",str,strerror(errno))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #define warn(str) message("audio: %s ",GETTEXT(str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #define UNUSED(x) ((void)(x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 #define UNUSED(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 #define __inline__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
97 static void (*sighup_handler)(int);
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
98 static void (*sigint_handler)(int);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 /* Maintain global variable for keeping parser state information; this struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 is set to zero before the first invocation of the parser. The use of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 global variable prevents multiple concurrent executions of this code, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 this does not happen anyways... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 static union {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 struct {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 int align;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 enum {wvMain,wvSubchunk,wvOutOfBlock,wvSkipChunk,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 wvSoundChunk,wvFatal,wvFatalNotify} state;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 size_t left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 unsigned char leftover[HEADERSZ];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 signed long chunklength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 } wave;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 struct {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 int align;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 int isdata;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 int skipping;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 size_t left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 unsigned char leftover[HEADERSZ];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 } audio;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 } parsestate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 /* Use a global buffer as scratch-pad for possible conversions of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 sampling format */
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
124 unsigned char linuxplay_sndbuf[SNDBUFSZ];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
126 int mix_fd = -1;
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
127 int audio_vol = -1;
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
128 int audio_fd = -1;
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
129 char *audio_dev = "";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 typedef enum {fmtIllegal,fmtRaw,fmtVoc,fmtWave,fmtSunAudio} fmtType;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 /* Intercept SIGINT and SIGHUP in order to close the audio and mixer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 devices before terminating sound output; this requires reliable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 signals as provided by "syssignal.h" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 static void sighandler(int sig)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 if (mix_fd > 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 if (audio_vol >= 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 ioctl(mix_fd,SOUND_MIXER_WRITE_PCM,&audio_vol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 audio_vol = -1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 if (mix_fd != audio_fd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 close(mix_fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 mix_fd = -1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 if (audio_fd > 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ioctl(audio_fd,SNDCTL_DSP_SYNC,NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 ioctl(audio_fd,SNDCTL_DSP_RESET,NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 close(audio_fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 audio_fd = -1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 if (sig == SIGHUP && sighup_handler) sighup_handler(sig);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 else if (sig == SIGINT && sigint_handler) sigint_handler(sig);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 else exit(1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 /* There is no special treatment required for parsing raw data files; we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 assume that these files contain data in 8bit unsigned format that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 has been sampled at 8kHz; there is no extra header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 static size_t parseraw(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 int rc = *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 *outbuf = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 /* Currently we cannot cope with files in VOC format; if you really need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 to play these files, they should be converted by using SOX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 static size_t parsevoc(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 UNUSED(data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 UNUSED(sz);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 UNUSED(outbuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 return(0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 /* We need to perform some look-ahead in order to parse files in WAVE format;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 this might require re-partioning of the data segments if headers cross the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 boundaries between two read operations. This is done in a two-step way:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 first we request a certain amount of bytes... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 static __inline__ int waverequire(void **data,size_t *sz,size_t rq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 int rc = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 if (rq > HEADERSZ) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 warn("Header size exceeded while parsing WAVE file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 parsestate.wave.state = wvFatal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 if ((rq -= parsestate.wave.left) <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 if (rq > *sz) {rq = *sz; rc = 0;}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 memcpy(parsestate.wave.leftover+parsestate.wave.left,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 *data,rq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 parsestate.wave.left += rq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 ((unsigned char *)*data) += rq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 *sz -= rq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 /* ...and next we remove this many bytes from the buffer */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 static __inline__ void waveremove(size_t rq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 if (parsestate.wave.left <= rq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 parsestate.wave.left = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 parsestate.wave.left -= rq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 memmove(parsestate.wave.leftover,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 parsestate.wave.leftover+rq,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 parsestate.wave.left); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 /* Sound files in WAVE format can contain an arbitrary amount of tagged
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 chunks; this requires quite some effort for parsing the data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 static size_t parsewave(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 switch (parsestate.wave.state) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 case wvMain:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 if (!waverequire(data,sz,20))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 return(0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 /* Keep compatibility with Linux 68k, etc. by not relying on byte-sex */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 parsestate.wave.chunklength = parsestate.wave.leftover[16] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 256*(parsestate.wave.leftover[17] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 256*(parsestate.wave.leftover[18] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 256*parsestate.wave.leftover[19]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 waveremove(20);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 parsestate.wave.state = wvSubchunk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 case wvSubchunk:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 if (!waverequire(data,sz,parsestate.wave.chunklength))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 return(0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 parsestate.wave.align = parsestate.wave.chunklength < 14 ? 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 : parsestate.wave.leftover[12];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 if (parsestate.wave.align != 1 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 parsestate.wave.align != 2 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 parsestate.wave.align != 4) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 warn("Illegal datawidth detected while parsing WAVE file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 parsestate.wave.state = wvFatal; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 parsestate.wave.state = wvOutOfBlock;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 waveremove(parsestate.wave.chunklength);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 case wvOutOfBlock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 if (!waverequire(data,sz,8))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 return(0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 /* Keep compatibility with Linux 68k, etc. by not relying on byte-sex */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 parsestate.wave.chunklength = parsestate.wave.leftover[4] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 256*(parsestate.wave.leftover[5] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 256*(parsestate.wave.leftover[6] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 256*(parsestate.wave.leftover[7] & 0x7F)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 if (memcmp(parsestate.wave.leftover,"data",4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 parsestate.wave.state = wvSkipChunk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 parsestate.wave.state = wvSoundChunk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 waveremove(8);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 case wvSkipChunk:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 if (parsestate.wave.chunklength > 0 && *sz > 0 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (signed long)*sz < (signed long)parsestate.wave.chunklength) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 parsestate.wave.chunklength -= *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 *sz = 0; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 if (parsestate.wave.chunklength > 0 && *sz > 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 *sz -= parsestate.wave.chunklength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 ((unsigned char *)*data) += parsestate.wave.chunklength; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 parsestate.wave.state = wvOutOfBlock; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 case wvSoundChunk: {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 size_t count,rq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 if (parsestate.wave.left) { /* handle leftover bytes from last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 alignment operation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 count = parsestate.wave.left;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 rq = HEADERSZ-count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 if (rq > parsestate.wave.chunklength)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 rq = parsestate.wave.chunklength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 if (!waverequire(data,sz,rq)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 parsestate.wave.chunklength -= parsestate.wave.left - count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 parsestate.wave.chunklength -= rq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 *outbuf = parsestate.wave.leftover;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 parsestate.wave.left = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 return(rq); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 if (*sz >= parsestate.wave.chunklength) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 count = parsestate.wave.chunklength;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 rq = 0; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 count = *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 count -= rq = count % parsestate.wave.align; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 *outbuf = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 ((unsigned char *)*data) += count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 *sz -= count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 if ((parsestate.wave.chunklength -= count) < parsestate.wave.align) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 parsestate.wave.state = wvOutOfBlock;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 /* Some broken software (e.g. SOX) attaches junk to the end of a sound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 chunk; so, let's ignore this... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 if (parsestate.wave.chunklength)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 parsestate.wave.state = wvSkipChunk; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 else if (rq)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 /* align data length to a multiple of datasize; keep additional data
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 98
diff changeset
302 in "leftover" buffer --- this is necessary to ensure proper
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 functioning of the sndcnv... routines */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 waverequire(data,sz,rq);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 return(count); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 case wvFatalNotify:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 warn("Irrecoverable error while parsing WAVE file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 parsestate.wave.state = wvFatal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 case wvFatal:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 /* Strip the header from files in Sun/DEC audio format; this requires some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 extra processing as the header can be an arbitrary size and it might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 result in alignment errors for subsequent conversions --- thus we do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 some buffering, where needed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 static size_t parsesundecaudio(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 /* There is data left over from the last invocation of this function; join
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 it with the new data and return a sound chunk that is as big as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 single entry */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 if (parsestate.audio.left) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 if (parsestate.audio.left + *sz > parsestate.audio.align) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 int count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 memmove(parsestate.audio.leftover + parsestate.audio.left,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 *data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 count = parsestate.audio.align - parsestate.audio.left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 *outbuf = parsestate.audio.leftover;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 *sz -= count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 *data = (*(char **)data) + count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 parsestate.audio.left = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 return(parsestate.audio.align); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 /* We need even more data in order to get one complete single entry! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 memmove(parsestate.audio.leftover + parsestate.audio.left,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 *data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 *sz);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 *data = (*(char **)data) + *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 parsestate.audio.left += *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 return(0); } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 /* This is the main sound chunk, strip of any extra data that does not fit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 the alignment requirements and move these bytes into the leftover buffer*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 if (parsestate.audio.isdata) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 int rc = *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 *outbuf = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 if ((parsestate.audio.left = rc % parsestate.audio.align) != 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 memmove(parsestate.audio.leftover,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (char *)*outbuf + rc - parsestate.audio.left,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 parsestate.audio.left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 rc -= parsestate.audio.left; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 return(rc); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 /* This is the first invocation of this function; we need to parse the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 header information and determine how many bytes we need to skip until
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 the start of the sound chunk */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 if (!parsestate.audio.skipping) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 unsigned char *header = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 if (*sz < 8) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 warn("Irrecoverable error while parsing Sun/DEC audio file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 /* Keep compatibility with Linux 68k, etc. by not relying on byte-sex */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 if (header[3]) { /* Sun audio (big endian) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 parsestate.audio.align = ((header[15] > 2)+1)*header[23];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 parsestate.audio.skipping = header[7]+256*(header[6]+256*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (header[5]+256*header[4])); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 else { /* DEC audio (little endian) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 parsestate.audio.align = ((header[12] > 2)+1)*header[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 parsestate.audio.skipping = header[4]+256*(header[5]+256*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (header[6]+256*header[7])); }}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 /* We are skipping extra data that has been attached to header; most usually
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 this will be just a comment, such as the original filename and/or the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 creation date. Make sure that we do not return less than one single sound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 sample entry to the caller; if this happens, rather decide to move those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 few bytes into the leftover buffer and deal with it later */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 if (*sz >= parsestate.audio.skipping) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 /* Skip just the header information and return the sound chunk */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 int rc = *sz - parsestate.audio.skipping;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 *outbuf = (char *)*data + parsestate.audio.skipping;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 if ((parsestate.audio.left = rc % parsestate.audio.align) != 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 memmove(parsestate.audio.leftover,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (char *)*outbuf + rc - parsestate.audio.left,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 parsestate.audio.left);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 rc -= parsestate.audio.left; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 parsestate.audio.skipping = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 parsestate.audio.isdata++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 return(rc); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 /* Skip everything */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 parsestate.audio.skipping -= *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 /* If the soundcard could not be set to natively support the data format, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 try to do some limited on-the-fly conversion to a different format; if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 no conversion is needed, though, we can output directly */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 static size_t sndcnvnop(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 int rc = *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 *outbuf = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 /* Convert 8 bit unsigned stereo data to 8 bit unsigned mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 static size_t sndcnv8U_2mono(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
426 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 while (count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 *dest++ = (unsigned char)(((int)*((unsigned char *)src)++ +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (int)*((unsigned char *)src)++) / 2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 /* Convert 8 bit signed stereo data to 8 bit signed mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 static size_t sndcnv8S_2mono(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
447 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 while (count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 *dest++ = (unsigned char)(((int)*((signed char *)src)++ +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (int)*((signed char *)src)++) / 2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 /* Convert 8 bit signed stereo data to 8 bit unsigned mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 static size_t sndcnv2monounsigned(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
468 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 while (count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 *dest++ = (unsigned char)(((int)*((signed char *)src)++ +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (int)*((signed char *)src)++) / 2) ^ 0x80;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 /* Convert 8 bit signed mono data to 8 bit unsigned mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 static size_t sndcnv2unsigned(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 count = *sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 if (count > SNDBUFSZ) { *sz -= SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
489 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 while (count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 *dest++ = *((unsigned char *)src)++ ^ 0x80;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 /* Convert a number in the range -32768..32767 to an 8 bit ulaw encoded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 number --- I hope, I got this conversion right :-) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 static __inline__ signed char int2ulaw(int i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 /* Lookup table for fast calculation of number of bits that need shifting*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 static short int t_bits[128] = {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 register int bits,logi;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 /* unrolling this condition (hopefully) improves execution speed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 if (i < 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 if ((i = (132-i)) > 0x7FFF) i = 0x7FFF;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 logi = (i >> ((bits = t_bits[i/256])+4));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 return((bits << 4 | logi) ^ 0x7F); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 if ((i = 132+i) > 0x7FFF) i = 0x7FFF;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 logi = (i >> ((bits = t_bits[i/256])+4));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 return(~(bits << 4 | logi)); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 /* Convert 8 bit ulaw stereo data to 8 bit ulaw mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 static size_t sndcnvULaw_2mono(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 static short int ulaw2int[256] = {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 /* Precomputed lookup table for conversion from ulaw to 15 bit signed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 -16062,-15550,-15038,-14526,-14014,-13502,-12990,-12478,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 -11966,-11454,-10942,-10430, -9918, -9406, -8894, -8382,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 -7998, -7742, -7486, -7230, -6974, -6718, -6462, -6206,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 -5950, -5694, -5438, -5182, -4926, -4670, -4414, -4158,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 -3966, -3838, -3710, -3582, -3454, -3326, -3198, -3070,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 -2942, -2814, -2686, -2558, -2430, -2302, -2174, -2046,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 -1950, -1886, -1822, -1758, -1694, -1630, -1566, -1502,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 -1438, -1374, -1310, -1246, -1182, -1118, -1054, -990,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 -942, -910, -878, -846, -814, -782, -750, -718,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 -686, -654, -622, -590, -558, -526, -494, -462,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 -438, -422, -406, -390, -374, -358, -342, -326,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 -310, -294, -278, -262, -246, -230, -214, -198,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 -186, -178, -170, -162, -154, -146, -138, -130,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 -122, -114, -106, -98, -90, -82, -74, -66,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 -60, -56, -52, -48, -44, -40, -36, -32,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 -28, -24, -20, -16, -12, -8, -4, +0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 +16062,+15550,+15038,+14526,+14014,+13502,+12990,+12478,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 +11966,+11454,+10942,+10430, +9918, +9406, +8894, +8382,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 +7998, +7742, +7486, +7230, +6974, +6718, +6462, +6206,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 +5950, +5694, +5438, +5182, +4926, +4670, +4414, +4158,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 +3966, +3838, +3710, +3582, +3454, +3326, +3198, +3070,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 +2942, +2814, +2686, +2558, +2430, +2302, +2174, +2046,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 +1950, +1886, +1822, +1758, +1694, +1630, +1566, +1502,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 +1438, +1374, +1310, +1246, +1182, +1118, +1054, +990,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 +942, +910, +878, +846, +814, +782, +750, +718,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 +686, +654, +622, +590, +558, +526, +494, +462,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 +438, +422, +406, +390, +374, +358, +342, +326,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 +310, +294, +278, +262, +246, +230, +214, +198,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 +186, +178, +170, +162, +154, +146, +138, +130,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 +122, +114, +106, +98, +90, +82, +74, +66,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 +60, +56, +52, +48, +44, +40, +36, +32,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 +28, +24, +20, +16, +12, +8, +4, +0};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
568 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 while (count--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 /* it is not possible to directly interpolate between two ulaw encoded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 data bytes, thus we need to convert to linear format first and later
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 we convert back to ulaw format */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 *dest++ = int2ulaw(ulaw2int[*((unsigned char *)src)++] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 ulaw2int[*((unsigned char *)src)++]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 /* Convert 16 bit little endian signed stereo data to 16 bit little endian
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 signed mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 static size_t sndcnv16_2monoLE(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 signed short i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
594 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 for (count /= 2; count--; ) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 i = ((int)(((unsigned char *)src)[0]) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 256*(int)(((unsigned char *)src)[1]) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (int)(((unsigned char *)src)[2]) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 256*(int)(((unsigned char *)src)[3])) / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 src += 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 *dest++ = (unsigned char)(i & 0xFF);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 *dest++ = (unsigned char)((i / 256) & 0xFF); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 /* Convert 16 bit big endian signed stereo data to 16 bit big endian
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 signed mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 static size_t sndcnv16_2monoBE(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 signed short i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
622 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 for (count /= 2; count--; ) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 i = ((int)(((unsigned char *)src)[1]) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 256*(int)(((unsigned char *)src)[0]) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (int)(((unsigned char *)src)[3]) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 256*(int)(((unsigned char *)src)[2])) / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 src += 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 *dest++ = (unsigned char)((i / 256) & 0xFF);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 *dest++ = (unsigned char)(i & 0xFF); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 /* Convert 16 bit little endian signed data to 8 bit unsigned data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 static size_t sndcnv2byteLE(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
648 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 while (count--) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 *dest++ = (unsigned char)(((signed char *)src)[1] ^ (signed char)0x80);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 ((char *)src) += 2; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 /* Convert 16 bit big endian signed data to 8 bit unsigned data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 static size_t sndcnv2byteBE(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 count = *sz / 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 if (count > SNDBUFSZ) { *sz -= 2*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
669 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 while (count--) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 *dest++ = (unsigned char)(((signed char *)src)[0] ^ (signed char)0x80);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 ((char *)src) += 2; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 /* Convert 16 bit little endian signed stereo data to 8 bit unsigned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 static size_t sndcnv2monobyteLE(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 count = *sz / 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 if (count > SNDBUFSZ) { *sz -= 4*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
691 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 while (count--) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 *dest++ = (unsigned char)(((int)((signed char *)src)[1] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (int)((signed char *)src)[3]) / 2 ^ 0x80);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 ((char *)src) += 4; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 /* Convert 16 bit big endian signed stereo data to 8 bit unsigned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 mono data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 static size_t sndcnv2monobyteBE(void **data,size_t *sz,void **outbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 register unsigned char *src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 register unsigned char *dest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 int rc,count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 count = *sz / 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 if (count > SNDBUFSZ) { *sz -= 4*SNDBUFSZ; count = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 else *sz = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 rc = count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 src = *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 *outbuf =
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
714 dest = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 while (count--) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 *dest++ = (unsigned char)(((int)((signed char *)src)[0] +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (int)((signed char *)src)[2]) / 2 ^ 0x80);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 ((char *)src) += 4; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 *data = src;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 return(rc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 /* Look at the header of the sound file and try to determine the format;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 we can recognize files in VOC, WAVE, and, Sun/DEC-audio format--- everything
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 else is assumed to be raw 8 bit unsigned data sampled at 8kHz */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 static fmtType analyze_format(unsigned char *format,int *fmt,int *speed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 int *tracks,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 size_t (**parsesndfile)(void **,size_t *sz,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 void **))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 /* Keep compatibility with Linux 68k, etc. by not relying on byte-sex */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 if (!memcmp(format,"Creative Voice File\x1A\x1A\x00",22) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (format[22]+256*format[23]) ==
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 ((0x1233-format[24]-256*format[25])&0xFFFF)) { /* VOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 *fmt = AFMT_U8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 *speed = 8000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 *tracks = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 *parsesndfile = parsevoc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 return(fmtVoc); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 else if (!memcmp(format,"RIFF",4) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 !memcmp(format+8,"WAVEfmt ",8)) { /* WAVE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 if (memcmp(format+20,"\001\000\001"/* PCM mono */,4) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 memcmp(format+20,"\001\000\002"/* PCM stereo */,4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 return(fmtIllegal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 *fmt = (format[32]/(*tracks = format[22])) == 1 ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 AFMT_U8 : AFMT_S16_LE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 /* Keep compatibility with Linux 68k, etc. by not relying on byte-sex */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 *speed = format[24]+256*(format[25]+256*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (format[26]+256*format[27]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 *parsesndfile = parsewave;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 return(fmtWave); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 else if (!memcmp(format,".snd",4)) { /* Sun Audio (big endian) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 if (format[7]+256*(format[6]+256*(format[5]+256*format[4])) < 24) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 *fmt = AFMT_MU_LAW;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 *speed = 8000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 *tracks = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 *parsesndfile = parsesundecaudio;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 return(fmtSunAudio); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 if (!memcmp(format+12,"\000\000\000\001",4)) *fmt = AFMT_MU_LAW;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 else if (!memcmp(format+12,"\000\000\000\002",4)) *fmt = AFMT_S8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 else if (!memcmp(format+12,"\000\000\000\003",4)) *fmt = AFMT_S16_BE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 else return(fmtIllegal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 /* Keep compatibility with Linux 68k, etc. by not relying on byte-sex */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 *speed = format[19]+256*(format[18]+256*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (format[17]+256*format[16]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 *tracks = format[23];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 *parsesndfile = parsesundecaudio;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 return(fmtSunAudio); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 else if (!memcmp(format,".sd",4)) { /* DEC Audio (little endian) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 if (format[4]+256*(format[5]+256*(format[6]+256*format[7])) < 24) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 *fmt = AFMT_MU_LAW;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 *speed = 8000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 *tracks = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 *parsesndfile = parsesundecaudio;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 return(fmtSunAudio); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 if (!memcmp(format+12,"\001\000\000",4)) *fmt = AFMT_MU_LAW;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 else if (!memcmp(format+12,"\002\000\000",4)) *fmt = AFMT_S8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 else if (!memcmp(format+12,"\003\000\000",4)) *fmt = AFMT_S16_LE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 else return(fmtIllegal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 /* Keep compatibility with Linux 68k, etc. by not relying on byte-sex */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 *speed = format[16]+256*(format[17]+256*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 (format[18]+256*format[19]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 *tracks = format[20];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 *parsesndfile = parsesundecaudio;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 return(fmtSunAudio); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 *fmt = AFMT_U8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 *speed = 8000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 *tracks = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 *parsesndfile = parseraw;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 return(fmtRaw); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 /* Initialize the soundcard and mixer device with the parameters that we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 found in the header of the sound file. If the soundcard is not capable of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 natively supporting the required parameters, then try to set up conversion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 routines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 The difficulty with setting up the sound card is that the parameters are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 not fully orthogonal; changing one of them might affect some of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 others, too. Thus we do quite a lot of double checking; actually most of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 this is not needed right now, but it will come in handy, if the kernel's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 sounddriver ever changes or if third-party sounddrivers are used. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 static int audio_init(int mixx_fd, int auddio_fd, int fmt, int speed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 int tracks, int *volume,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 size_t (**sndcnv) (void **, size_t *sz, void **))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 int i,the_speed,the_stereo,the_fmt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 *sndcnv = sndcnvnop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 if (ioctl(auddio_fd,SNDCTL_DSP_SYNC,NULL) < 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 perror("SNDCTL_DSP_SYNC");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 /* Initialize sound hardware with prefered parameters */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 /* If the sound hardware cannot support 16 bit format or requires a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 different byte sex then try to drop to 8 bit format */
129
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
819
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
820 the_fmt = fmt;
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
821 if(ioctl(audio_fd,SNDCTL_DSP_SETFMT,&the_fmt) < 0) {
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
822 perror("SNDCTL_DSP_SETFMT");
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
823 return(0);
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
824 }
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
825
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 if (fmt != the_fmt) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 if (fmt == AFMT_S16_LE || fmt == AFMT_S16_BE) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 *sndcnv = fmt == AFMT_S16_BE ? sndcnv2byteBE : sndcnv2byteLE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 if (((i=fmt=AFMT_U8),ioctl(audio_fd,SNDCTL_DSP_SETFMT,&i)) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 fmt != i || ioctl(audio_fd,SNDCTL_DSP_SETFMT,&the_fmt) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 fmt != the_fmt) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 perror("SNDCTL_DSP_SETFMT");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 return(0); } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 perror("SNDCTL_DSP_SETFMT");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 return(0); } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 else if (fmt == AFMT_S8) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 *sndcnv = sndcnv2unsigned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 if (((i=fmt=AFMT_U8),ioctl(audio_fd,SNDCTL_DSP_SETFMT,&i)) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 fmt != i || ioctl(audio_fd,SNDCTL_DSP_SETFMT,&the_fmt) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 fmt != the_fmt) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 perror("SNDCTRL_DSP_SETFMT");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 return(0); } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
129
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
845 /* The PCSP driver does not support reading of the sampling rate via the
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
846 SOUND_PCM_READ_RATE ioctl; determine "the_speed" here */
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
847 the_speed = speed; ioctl(audio_fd,SNDCTL_DSP_SPEED,&the_speed);
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
848 /* The PCSP driver does not support reading of the mono/stereo flag, thus
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
849 we assume, that failure to change this mode means we are in mono mode */
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
850 if (((i = (the_stereo = tracks)-1),ioctl(audio_fd,SNDCTL_DSP_STEREO,&i)) < 0)
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
851 the_stereo = 1;
e292c9648bb9 Import from CVS: tag xemacs-20-1p3
cvs
parents: 124
diff changeset
852
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 /* Try to request stereo playback (if needed); if this cannot be supported
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 by the hardware, then install conversion routines for mono playback */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 /* This ioctl will fail if we use the PCSP driver; thus the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 "the_stereo" is still unchanged */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 ioctl(audio_fd,SOUND_PCM_READ_CHANNELS,&the_stereo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 if (tracks != the_stereo) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 if (tracks == 2) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 tracks = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 *sndcnv = *sndcnv == sndcnv2byteLE ? sndcnv2monobyteLE :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 *sndcnv == sndcnv2byteBE ? sndcnv2monobyteBE :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 *sndcnv == sndcnv2unsigned ? sndcnv2monounsigned :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 the_fmt == AFMT_S16_LE ? sndcnv16_2monoLE :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 the_fmt == AFMT_S16_BE ? sndcnv16_2monoBE :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 the_fmt == AFMT_S8 ? sndcnv8S_2mono :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 the_fmt == AFMT_U8 ? sndcnv8U_2mono :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 the_fmt == AFMT_MU_LAW ? sndcnvULaw_2mono : NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 if (*sndcnv == NULL) { /* this should not happen */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 perror("SNDCTL_DSP_STEREO");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 /* Switch to mono mode */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 if (((i = 0),ioctl(audio_fd,SNDCTL_DSP_STEREO,&i)) < 0 || i) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 perror("SNDCTL_DSP_STEREO");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 /* Now double check that everything is set as expected */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 if (((i = AFMT_QUERY),ioctl(audio_fd,SNDCTL_DSP_SETFMT,&i)) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (i != the_fmt &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (((i=the_fmt),ioctl(audio_fd,SNDCTL_DSP_SETFMT,&i)) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 i != the_fmt ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 ((i = AFMT_QUERY),ioctl(audio_fd,SNDCTL_DSP_SETFMT,&i)) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 i != the_fmt)) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (ioctl(audio_fd,SOUND_PCM_READ_CHANNELS,&i) >= 0 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 i != 1)) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 /* There was no way that we could set the soundcard to a meaningful
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 mode */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 perror("SNDCTL_DSP_SETFMT and SNDCTL_DSP_STEREO");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 return(0); } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 /* Somebody set the soundcard to stereo even though we requested
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 mono; this should not happen... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 if (((i = the_stereo = tracks),ioctl(audio_fd,SNDCTL_DSP_STEREO,&i))<0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 i != the_stereo-1) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 perror("SNDCTL_DSP_STEREO");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 if (((i = AFMT_QUERY),ioctl(audio_fd,SNDCTL_DSP_SETFMT,&i)) < 0 ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 i != the_fmt) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 perror("SNDCTL_DSP_SETFMT");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 return(0); } } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 /* Fail if deviations from desired sampling frequency are too big */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 /* This ioctl will fail if we use the PCSP driver; thus the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 "the_speed" is still unchanged */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 ioctl(audio_fd,SOUND_PCM_READ_RATE,&the_speed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 if (speed*14 < the_speed*10 || speed*6 > the_speed*10) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 char buffer[256];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 sprintf(buffer,"SNDCTL_DSP_SPEED (req: %d, rtn: %d)",speed,the_speed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 perror(buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 return(0); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 /* Use the mixer device for setting the playback volume */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 if (mixx_fd > 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 int vol = *volume & 0xFF;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 if (ioctl(mixx_fd,SOUND_MIXER_READ_PCM,volume) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 *volume = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 if (vol < 0) vol = 0; else if (vol > 100) vol = 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 #ifdef NOVOLUMECTRLFORMULAW
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 if (fmt == AFMT_MU_LAW)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 vol = 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 vol |= 256*vol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 /* Do not signal an error, if volume control is unavailable! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 ioctl(mixx_fd,SOUND_MIXER_WRITE_PCM,&vol); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 #if defined(LINUXPLAYSTANDALONE) && 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 /* Debugging output is displayed only when compiled as stand-alone version */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 {int the_volume;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 the_fmt = AFMT_QUERY;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 ioctl(audio_fd,SNDCTL_DSP_SETFMT,&the_fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 ioctl(auddio_fd,SOUND_PCM_READ_CHANNELS,&the_stereo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 ioctl(auddio_fd,SOUND_PCM_READ_RATE,&the_speed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 ioctl(mixx_fd,SOUND_MIXER_READ_PCM,&the_volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 fprintf(stderr,"%s, %s, %dHz, L:%d/R:%d\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 the_fmt == AFMT_MU_LAW ? "AFMT_MU_LAW" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 the_fmt == AFMT_A_LAW ? "AFMT_A_LAW" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 the_fmt == AFMT_IMA_ADPCM ? "AFMT_IMA_ADPCM" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 the_fmt == AFMT_U8 ? "AFMT_U8" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 the_fmt == AFMT_S16_LE ? "AFMT_S16_LE" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 the_fmt == AFMT_S16_BE ? "AFMT_S16_BE" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 the_fmt == AFMT_S8 ? "AFMT_S8" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 the_fmt == AFMT_U16_LE ? "AFMT_U16_LE" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 the_fmt == AFMT_U16_BE ? "AFMT_U16_BE" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 the_fmt == AFMT_MPEG ? "AFMT_MPEG" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 "AFMT_???",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 the_stereo == 2 ? "stereo" : "mono",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 the_speed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 the_volume / 256, the_volume % 256); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 return(1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 /* XEmacs requires code both for playback of pre-loaded data and for playback
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 from a soundfile; we use one function for both cases */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 static void linux_play_data_or_file(int fd,unsigned char *data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 int length,int volume)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 size_t (*parsesndfile)(void **dayta,size_t *sz,void **outbuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 size_t (*sndcnv)(void **dayta,size_t *sz,void **);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 fmtType ffmt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 int fmt,speed,tracks;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 unsigned char *pptr,*optr,*cptr,*sptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 int wrtn,rrtn,crtn,prtn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 /* We need to read at least the header information before we can start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 doing anything */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 if (!data || length < HEADERSZ)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 if (fd < 0) return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 else {
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
972 length = read(fd,linuxplay_sndbuf,SNDBUFSZ);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 if (length < HEADERSZ)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 return;
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
975 data = linuxplay_sndbuf;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 length = SNDBUFSZ; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 ffmt = analyze_format(data,&fmt,&speed,&tracks,&parsesndfile);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 if (ffmt != fmtRaw && ffmt != fmtSunAudio && ffmt != fmtWave) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 warn("Unsupported file format (neither RAW, nor Sun/DECAudio, nor WAVE)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 return; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 /* The VoxWare-SDK discourages opening /dev/audio; opening /dev/dsp and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 properly intializing it via ioctl() is prefered */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 if ((audio_fd=open((audio_dev="/dev/dsp"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (O_WRONLY|O_NDELAY),0)) < 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 perror(audio_dev);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 if (mix_fd > 0 && mix_fd != audio_fd) { close(mix_fd); mix_fd = -1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 return; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 /* The VoxWare-SDK discourages direct manipulation of the mixer device as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 this could lead to problems, when multiple sound cards are installed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 mix_fd = audio_fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
996 sighup_handler = signal(SIGHUP, sighandler);
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 70
diff changeset
997 sigint_handler = signal(SIGINT, sighandler);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 if (!audio_init(mix_fd,audio_fd,fmt,speed,tracks,&volume,&sndcnv))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 goto END_OF_PLAY;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 audio_vol = volume;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 /* Initialize global parser state information to zero */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 memset(&parsestate,0,sizeof(parsestate));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 /* Mainloop: read a block of data, parse its contents, perform all
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 98
diff changeset
1007 the necessary conversions and output it to the sound
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 device; repeat until all data has been processed */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 rrtn = length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 do {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 for (pptr = data; (prtn = parsesndfile((void **)&pptr,&rrtn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (void **)&optr)) > 0; )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 for (cptr = optr; (crtn = sndcnv((void **)&cptr,&prtn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (void **)&sptr)) > 0; ) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 for (;;) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 if ((wrtn = write(audio_fd,sptr,crtn)) < 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 perror("write"); goto END_OF_PLAY; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 else if (wrtn) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 else if (ioctl(audio_fd,SNDCTL_DSP_SYNC,NULL) < 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 perror("SNDCTL_DSP_SYNC"); goto END_OF_PLAY; } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 if (wrtn != crtn) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 char buf[255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 sprintf(buf,"play: crtn = %d, wrtn = %d",crtn,wrtn);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 warn(buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 goto END_OF_PLAY; } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 if (fd >= 0) {
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 110
diff changeset
1027 if ((rrtn = read(fd,linuxplay_sndbuf,SNDBUFSZ)) < 0) {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 perror("read"); goto END_OF_PLAY; } }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 } while (rrtn > 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 /* Verify that we could fully parse the entire soundfile; this is needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 only for files in WAVE format */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 if (ffmt == fmtWave && parsestate.wave.state != wvOutOfBlock &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 parsestate.wave.state != wvFatal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 warn("Unexpected end of WAVE file");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 END_OF_PLAY:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 /* Now cleanup all used resources */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 ioctl(audio_fd,SNDCTL_DSP_SYNC,NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 ioctl(audio_fd,SNDCTL_DSP_RESET,NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 signal(SIGHUP,sighup_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 signal(SIGINT,sigint_handler);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 if (mix_fd > 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 if (audio_vol >= 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 ioctl(mix_fd,SOUND_MIXER_WRITE_PCM,&audio_vol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 audio_vol = -1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 if (mix_fd != audio_fd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 close(mix_fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 mix_fd = -1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 close(audio_fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 audio_fd = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 /* Call "linux_play_data_or_file" with the appropriate parameters for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 playing a soundfile */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 void play_sound_file (char *sound_file, int volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 void play_sound_file (char *sound_file, int volume)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 int fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 if ((fd=open(sound_file,O_RDONLY,0)) < 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 perror(sound_file);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 return; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 linux_play_data_or_file(fd,NULL,0,volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 close(fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 /* Call "linux_play_data_or_file" with the appropriate parameters for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 playing pre-loaded data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 void play_sound_data (unsigned char *data, int length, int volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 void play_sound_data (unsigned char *data, int length, int volume)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 linux_play_data_or_file(-1,data,length,volume);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 }