Mercurial > SDL_sound_CoreAudio
comparison decoders/flac.c @ 535:45ee760a6f5a stable-1.0
Converted all text encoding from ISO-8859-1 to UTF-8.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 17 Apr 2008 18:06:53 +0000 |
parents | c5f184b4b2cd |
children |
comparison
equal
deleted
inserted
replaced
533:cad2940e992f | 535:45ee760a6f5a |
---|---|
24 * Codec. It depends on libFLAC for decoding, which can be grabbed from: | 24 * Codec. It depends on libFLAC for decoding, which can be grabbed from: |
25 * http://flac.sourceforge.net | 25 * http://flac.sourceforge.net |
26 * | 26 * |
27 * Please see the file COPYING in the source's root directory. | 27 * Please see the file COPYING in the source's root directory. |
28 * | 28 * |
29 * This file written by Torbjörn Andersson. (d91tan@Update.UU.SE) | 29 * This file written by Torbjörn Andersson. (d91tan@Update.UU.SE) |
30 */ | 30 */ |
31 | 31 |
32 #if HAVE_CONFIG_H | 32 #if HAVE_CONFIG_H |
33 # include <config.h> | 33 # include <config.h> |
34 #endif | 34 #endif |
144 const Sound_DecoderFunctions __Sound_DecoderFunctions_FLAC = | 144 const Sound_DecoderFunctions __Sound_DecoderFunctions_FLAC = |
145 { | 145 { |
146 { | 146 { |
147 extensions_flac, | 147 extensions_flac, |
148 "Free Lossless Audio Codec", | 148 "Free Lossless Audio Codec", |
149 "Torbjörn Andersson <d91tan@Update.UU.SE>", | 149 "Torbjörn Andersson <d91tan@Update.UU.SE>", |
150 "http://flac.sourceforge.net/" | 150 "http://flac.sourceforge.net/" |
151 }, | 151 }, |
152 | 152 |
153 FLAC_init, /* init() method */ | 153 FLAC_init, /* init() method */ |
154 FLAC_quit, /* quit() method */ | 154 FLAC_quit, /* quit() method */ |