Mercurial > SDL_sound_CoreAudio
comparison decoders/ogg.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 | 30f96c853462 |
children |
comparison
equal
deleted
inserted
replaced
521:f33471c47efe | 525:50bb9a6cebfe |
---|---|
27 * Ogg Vorbis: http://www.xiph.org/ogg/vorbis/ | 27 * Ogg Vorbis: http://www.xiph.org/ogg/vorbis/ |
28 * vorbisfile documentation: http://www.xiph.org/ogg/vorbis/doc/vorbisfile/ | 28 * vorbisfile documentation: http://www.xiph.org/ogg/vorbis/doc/vorbisfile/ |
29 * | 29 * |
30 * Please see the file COPYING in the source's root directory. | 30 * Please see the file COPYING in the source's root directory. |
31 * | 31 * |
32 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | 32 * This file written by Ryan C. Gordon. (icculus@icculus.org) |
33 */ | 33 */ |
34 | 34 |
35 #if HAVE_CONFIG_H | 35 #if HAVE_CONFIG_H |
36 # include <config.h> | 36 # include <config.h> |
37 #endif | 37 #endif |
64 const Sound_DecoderFunctions __Sound_DecoderFunctions_OGG = | 64 const Sound_DecoderFunctions __Sound_DecoderFunctions_OGG = |
65 { | 65 { |
66 { | 66 { |
67 extensions_ogg, | 67 extensions_ogg, |
68 "Ogg Vorbis audio through VorbisFile", | 68 "Ogg Vorbis audio through VorbisFile", |
69 "Ryan C. Gordon <icculus@clutteredmind.org>", | 69 "Ryan C. Gordon <icculus@icculus.org>", |
70 "http://www.icculus.org/SDL_sound/" | 70 "http://www.icculus.org/SDL_sound/" |
71 }, | 71 }, |
72 | 72 |
73 OGG_init, /* init() method */ | 73 OGG_init, /* init() method */ |
74 OGG_quit, /* quit() method */ | 74 OGG_quit, /* quit() method */ |