Mercurial > SDL_sound_CoreAudio
comparison decoders/smpeg.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 | 0f5888f9aef7 |
children |
comparison
equal
deleted
inserted
replaced
521:f33471c47efe | 525:50bb9a6cebfe |
---|---|
30 * doesn't depend on external libraries (the decoder itself is part of | 30 * doesn't depend on external libraries (the decoder itself is part of |
31 * SDL_sound), and may be more efficient, but less flexible than SMPEG. YMMV. | 31 * SDL_sound), and may be more efficient, but less flexible than SMPEG. YMMV. |
32 * | 32 * |
33 * Please see the file COPYING in the source's root directory. | 33 * Please see the file COPYING in the source's root directory. |
34 * | 34 * |
35 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | 35 * This file written by Ryan C. Gordon. (icculus@icculus.org) |
36 */ | 36 */ |
37 | 37 |
38 #if HAVE_CONFIG_H | 38 #if HAVE_CONFIG_H |
39 # include <config.h> | 39 # include <config.h> |
40 #endif | 40 #endif |
66 const Sound_DecoderFunctions __Sound_DecoderFunctions_SMPEG = | 66 const Sound_DecoderFunctions __Sound_DecoderFunctions_SMPEG = |
67 { | 67 { |
68 { | 68 { |
69 extensions_smpeg, | 69 extensions_smpeg, |
70 "MPEG-1 Layer 3 audio through SMPEG", | 70 "MPEG-1 Layer 3 audio through SMPEG", |
71 "Ryan C. Gordon <icculus@clutteredmind.org>", | 71 "Ryan C. Gordon <icculus@icculus.org>", |
72 "http://icculus.org/smpeg/" | 72 "http://icculus.org/smpeg/" |
73 }, | 73 }, |
74 | 74 |
75 _SMPEG_init, /* init() method */ | 75 _SMPEG_init, /* init() method */ |
76 _SMPEG_quit, /* quit() method */ | 76 _SMPEG_quit, /* quit() method */ |