comparison decoders/mp3.c @ 192:5b311ffabe45

Changed decoder's URL to point to Loki's SMPEG development page.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 02 Jan 2002 00:41:03 +0000
parents 47cc2de2ae36
children c9772a9f5271
comparison
equal deleted inserted replaced
191:fbb6101ea4b4 192:5b311ffabe45
21 * MPEG-1 Layer 3, or simply, "MP3", decoder for SDL_sound. 21 * MPEG-1 Layer 3, or simply, "MP3", decoder for SDL_sound.
22 * 22 *
23 * This driver handles all those highly compressed songs you stole through 23 * This driver handles all those highly compressed songs you stole through
24 * Napster. :) It depends on the SMPEG library for decoding, which can 24 * Napster. :) It depends on the SMPEG library for decoding, which can
25 * be grabbed from: http://www.lokigames.com/development/smpeg.php3 25 * be grabbed from: http://www.lokigames.com/development/smpeg.php3
26 *
27 * This should also be able to extract the audio stream from an MPEG movie.
26 * 28 *
27 * Please see the file COPYING in the source's root directory. 29 * Please see the file COPYING in the source's root directory.
28 * 30 *
29 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) 31 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org)
30 */ 32 */
60 { 62 {
61 { 63 {
62 extensions_smpeg, 64 extensions_smpeg,
63 "MPEG-1 Layer 3 audio through SMPEG", 65 "MPEG-1 Layer 3 audio through SMPEG",
64 "Ryan C. Gordon <icculus@clutteredmind.org>", 66 "Ryan C. Gordon <icculus@clutteredmind.org>",
65 "http://www.icculus.org/SDL_sound/" 67 "http://www.lokigames.com/development/smpeg.php3"
66 }, 68 },
67 69
68 MP3_init, /* init() method */ 70 MP3_init, /* init() method */
69 MP3_quit, /* quit() method */ 71 MP3_quit, /* quit() method */
70 MP3_open, /* open() method */ 72 MP3_open, /* open() method */