annotate src/linuxplay.c @ 98:0d2f883870bc r20-1b1

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