Mercurial > SDL_sound_CoreAudio
comparison decoders/wav.c @ 526:2df1f5c62d38
Updated my email address.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 06 Aug 2007 09:44:02 +0000 |
parents | 3e705c9180e5 |
children | 2e8907ff98e9 |
comparison
equal
deleted
inserted
replaced
524:a0bb7a9c05b1 | 526:2df1f5c62d38 |
---|---|
23 * This driver handles Microsoft .WAVs, in as many of the thousands of | 23 * This driver handles Microsoft .WAVs, in as many of the thousands of |
24 * variations as we can. | 24 * variations as we can. |
25 * | 25 * |
26 * Please see the file COPYING in the source's root directory. | 26 * Please see the file COPYING in the source's root directory. |
27 * | 27 * |
28 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | 28 * This file written by Ryan C. Gordon. (icculus@icculus.org) |
29 */ | 29 */ |
30 | 30 |
31 #if HAVE_CONFIG_H | 31 #if HAVE_CONFIG_H |
32 # include <config.h> | 32 # include <config.h> |
33 #endif | 33 #endif |
55 const Sound_DecoderFunctions __Sound_DecoderFunctions_WAV = | 55 const Sound_DecoderFunctions __Sound_DecoderFunctions_WAV = |
56 { | 56 { |
57 { | 57 { |
58 extensions_wav, | 58 extensions_wav, |
59 "Microsoft WAVE audio format", | 59 "Microsoft WAVE audio format", |
60 "Ryan C. Gordon <icculus@clutteredmind.org>", | 60 "Ryan C. Gordon <icculus@icculus.org>", |
61 "http://www.icculus.org/SDL_sound/" | 61 "http://www.icculus.org/SDL_sound/" |
62 }, | 62 }, |
63 | 63 |
64 WAV_init, /* init() method */ | 64 WAV_init, /* init() method */ |
65 WAV_quit, /* quit() method */ | 65 WAV_quit, /* quit() method */ |