Mercurial > SDL_sound_CoreAudio
annotate decoders/raw.c @ 64:40006625142a
Changes in preparation of autoconf support.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 24 Sep 2001 23:33:19 +0000 |
parents | b13fafb976be |
children | 6d9fdec2f708 |
rev | line source |
---|---|
4 | 1 /* |
2 * SDL_sound -- An abstract sound format decoding API. | |
3 * Copyright (C) 2001 Ryan C. Gordon. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2.1 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 | |
20 /* | |
21 * RAW decoder for SDL_sound. This is as simple as it gets. | |
22 * | |
23 * This driver handles raw audio data. You must, regardless of where the | |
24 * data is actually coming from, specify the string "RAW" in the extension | |
25 * parameter of Sound_NewSample() (or, alternately, open a file with the | |
26 * extension ".raw" in Sound_NewSampleFromFile()). The string is checked | |
27 * case-insensitive. We need this check, because raw data, being raw, has | |
28 * no headers or magic number we can use to determine if we should handle a | |
29 * given file, so we needed some way to have this "decoder" discriminate. | |
30 * | |
31 * When calling Sound_NewSample*(), you must also specify a "desired" | |
32 * audio format. The "actual" format will always match what you specify, so | |
33 * there will be no conversion overhead, but these routines need to know how | |
34 * to treat the bits, since it's all random garbage otherwise. | |
35 * | |
36 * Please see the file LICENSE in the source's root directory. | |
37 * | |
38 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | |
39 */ | |
40 | |
64
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
41 #ifdef SOUND_SUPPORTS_RAW |
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
42 |
4 | 43 #include <stdio.h> |
44 #include <stdlib.h> | |
45 #include <string.h> | |
46 #include <assert.h> | |
47 #include "SDL_sound.h" | |
48 | |
49 #define __SDL_SOUND_INTERNAL__ | |
50 #include "SDL_sound_internal.h" | |
51 | |
52 | |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
53 static int RAW_init(void); |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
54 static void RAW_quit(void); |
4 | 55 static int RAW_open(Sound_Sample *sample, const char *ext); |
56 static void RAW_close(Sound_Sample *sample); | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
57 static Uint32 RAW_read(Sound_Sample *sample); |
4 | 58 |
59 const Sound_DecoderFunctions __Sound_DecoderFunctions_RAW = | |
60 { | |
61 { | |
62 "RAW", | |
63 "Raw audio", | |
64 "Ryan C. Gordon <icculus@clutteredmind.org>", | |
65 "http://www.icculus.org/SDL_sound/" | |
66 }, | |
67 | |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
68 RAW_init, /* init() method */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
69 RAW_quit, /* quit() method */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
70 RAW_open, /* open() method */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
71 RAW_close, /* close() method */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
72 RAW_read /* read() method */ |
4 | 73 }; |
74 | |
75 | |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
76 static int RAW_init(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
77 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
78 return(1); /* always succeeds. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
79 } /* RAW_init */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
80 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
81 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
82 static void RAW_quit(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
83 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
84 /* it's a no-op. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
85 } /* RAW_quit */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
86 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
87 |
4 | 88 static int RAW_open(Sound_Sample *sample, const char *ext) |
89 { | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
90 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
91 * We check this explicitly, since we have no other way to |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
92 * determine whether we should handle this data or not. |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
93 */ |
4 | 94 if (__Sound_strcasecmp(ext, "RAW") != 0) |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
95 { |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
96 Sound_SetError("RAW: extension isn't explicitly \"RAW\"."); |
4 | 97 return(0); |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
98 } /* if */ |
4 | 99 |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
100 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
101 * You must also specify a desired format, so we know how to |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
102 * treat the bits that are otherwise binary garbage. |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
103 */ |
4 | 104 if ( (sample->desired.channels < 1) || |
105 (sample->desired.channels > 2) || | |
106 (sample->desired.rate == 0) || | |
107 (sample->desired.format == 0) ) | |
108 { | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
109 Sound_SetError("RAW: invalid desired format."); |
4 | 110 return(0); |
111 } /* if */ | |
112 | |
62
b13fafb976be
Changed _D macro to DBGSND.
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
113 SNDDBG(("RAW: Accepting data stream.\n")); |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
114 |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
115 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
116 * We never convert raw samples; what you ask for is what you get. |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
117 */ |
4 | 118 memcpy(&sample->actual, &sample->desired, sizeof (Sound_AudioInfo)); |
119 sample->flags = SOUND_SAMPLEFLAG_NONE; | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
120 |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
121 return(1); /* we'll handle this data. */ |
4 | 122 } /* RAW_open */ |
123 | |
124 | |
125 static void RAW_close(Sound_Sample *sample) | |
126 { | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
127 /* we don't allocate anything that we need to free. That's easy, eh? */ |
4 | 128 } /* RAW_close */ |
129 | |
130 | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
131 static Uint32 RAW_read(Sound_Sample *sample) |
4 | 132 { |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
133 Uint32 retval; |
4 | 134 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
135 |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
136 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
137 * We don't actually do any decoding, so we read the raw data |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
138 * directly into the internal buffer... |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
139 */ |
4 | 140 retval = SDL_RWread(internal->rw, internal->buffer, |
141 1, internal->buffer_size); | |
142 | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
143 /* Make sure the read went smoothly... */ |
4 | 144 if (retval == 0) |
145 sample->flags |= SOUND_SAMPLEFLAG_EOF; | |
146 | |
147 else if (retval == -1) | |
148 sample->flags |= SOUND_SAMPLEFLAG_ERROR; | |
149 | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
150 /* (next call this EAGAIN may turn into an EOF or error.) */ |
4 | 151 else if (retval < internal->buffer_size) |
152 sample->flags |= SOUND_SAMPLEFLAG_EAGAIN; | |
153 | |
154 return(retval); | |
155 } /* RAW_read */ | |
156 | |
64
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
157 #endif /* SOUND_SUPPORTS_RAW */ |
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
158 |
4 | 159 |
160 /* end of raw.c ... */ | |
161 |