Mercurial > SDL_sound_CoreAudio
comparison decoders/speex.c @ 525:50bb9a6cebfe stable-1.0
Updated my email address.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 06 Aug 2007 09:44:02 +0000 |
parents | 6bd7ca7d218b |
children | 61a317171ef0 |
comparison
equal
deleted
inserted
replaced
521:f33471c47efe | 525:50bb9a6cebfe |
---|---|
34 * | 34 * |
35 * This code is based on speexdec.c (see the Speex website). | 35 * This code is based on speexdec.c (see the Speex website). |
36 * | 36 * |
37 * Please see the file COPYING in the source's root directory. | 37 * Please see the file COPYING in the source's root directory. |
38 * | 38 * |
39 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | 39 * This file written by Ryan C. Gordon. (icculus@icculus.org) |
40 */ | 40 */ |
41 | 41 |
42 #if HAVE_CONFIG_H | 42 #if HAVE_CONFIG_H |
43 # include <config.h> | 43 # include <config.h> |
44 #endif | 44 #endif |
71 const Sound_DecoderFunctions __Sound_DecoderFunctions_SPEEX = | 71 const Sound_DecoderFunctions __Sound_DecoderFunctions_SPEEX = |
72 { | 72 { |
73 { | 73 { |
74 extensions_speex, | 74 extensions_speex, |
75 "SPEEX speech compression format", | 75 "SPEEX speech compression format", |
76 "Ryan C. Gordon <icculus@clutteredmind.org>", | 76 "Ryan C. Gordon <icculus@icculus.org>", |
77 "http://www.icculus.org/SDL_sound/" | 77 "http://www.icculus.org/SDL_sound/" |
78 }, | 78 }, |
79 | 79 |
80 SPEEX_init, /* init() method */ | 80 SPEEX_init, /* init() method */ |
81 SPEEX_quit, /* quit() method */ | 81 SPEEX_quit, /* quit() method */ |