Mercurial > SDL_sound_CoreAudio
changeset 526:2df1f5c62d38
Updated my email address.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 06 Aug 2007 09:44:02 +0000 |
parents | a0bb7a9c05b1 |
children | b5ddeebce808 |
files | CHANGELOG COPYING CREDITS INSTALL README SDL_sound.c SDL_sound.h SDL_sound_internal.h decoders/mpglib.c decoders/ogg.c decoders/raw.c decoders/shn.c decoders/skeleton.c decoders/smpeg.c decoders/speex.c decoders/timidity/COPYING decoders/voc.c decoders/wav.c extra_rwops.c extra_rwops.h mixer/converters.c mixer/mixercore.c playsound/physfsrwops.c playsound/physfsrwops.h playsound/playsound.c playsound/playsound_simple.c |
diffstat | 26 files changed, 36 insertions(+), 35 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGELOG Mon Aug 06 09:41:58 2007 +0000 +++ b/CHANGELOG Mon Aug 06 09:44:02 2007 +0000 @@ -2,6 +2,7 @@ * CHANGELOG. */ +08062007 - Updated my email address. Added -fvisibility=hidden support. 07152007 - Minor correction in Timidity resampling code (Thanks, Sam!). 07062007 - Fixed uninitialized buffer in mpglib. (Thanks, Phil!). 10292006 - Fixed bogus memory deference when SMPEG fails init (thanks, Chris!) @@ -373,7 +374,7 @@ 09142001 - Changed name to SDL_sound, added Sound_DecodeAll() to spec. 09132001 - Initial spec proposed on SDL mailing list, under name "SDL_voice". ---ryan. (icculus@clutteredmind.org) +--ryan. (icculus@icculus.org) /* end of CHANGELOG ... */
--- a/COPYING Mon Aug 06 09:41:58 2007 +0000 +++ b/COPYING Mon Aug 06 09:44:02 2007 +0000 @@ -9,7 +9,7 @@ external projects and we've got no control over them. If you want to use SDL_sound under a closed-source license, please contact - Ryan (icculus@clutteredmind.org), and we can discuss an alternate license for + Ryan (icculus@icculus.org), and we can discuss an alternate license for money to be distributed between the contributors to this work, but I'd encourage you to abide by the LGPL, since the usual concern is whether you can use this library without releasing your own source code (you can).
--- a/CREDITS Mon Aug 06 09:41:58 2007 +0000 +++ b/CREDITS Mon Aug 06 09:44:02 2007 +0000 @@ -60,7 +60,7 @@ Chris Nelson Other stuff: - Your name here! Patches go to icculus@clutteredmind.org ... + Your name here! Patches go to icculus@icculus.org ... /* end of CREDITS ... */
--- a/INSTALL Mon Aug 06 09:41:58 2007 +0000 +++ b/INSTALL Mon Aug 06 09:44:02 2007 +0000 @@ -100,6 +100,6 @@ joining the SDL_sound mailing list. Details are at: http://icculus.org/SDL_sound/ ---ryan. (icculus@clutteredmind.org) +--ryan. (icculus@icculus.org)
--- a/README Mon Aug 06 09:41:58 2007 +0000 +++ b/README Mon Aug 06 09:44:02 2007 +0000 @@ -52,6 +52,6 @@ sdlsound-subscribe@icculus.org. This is the best way to get in touch with SDL_sound developers. ---ryan. (icculus@clutteredmind.org) +--ryan. (icculus@icculus.org)
--- a/SDL_sound.c Mon Aug 06 09:41:58 2007 +0000 +++ b/SDL_sound.c Mon Aug 06 09:44:02 2007 +0000 @@ -25,7 +25,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H
--- a/SDL_sound.h Mon Aug 06 09:41:58 2007 +0000 +++ b/SDL_sound.h Mon Aug 06 09:44:02 2007 +0000 @@ -57,7 +57,7 @@ * * Please see the file COPYING in the source's root directory. * - * \author Ryan C. Gordon (icculus@clutteredmind.org) + * \author Ryan C. Gordon (icculus@icculus.org) * \author many others, please see CREDITS in the source's root directory. */
--- a/SDL_sound_internal.h Mon Aug 06 09:41:58 2007 +0000 +++ b/SDL_sound_internal.h Mon Aug 06 09:44:02 2007 +0000 @@ -23,7 +23,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #ifndef _INCLUDE_SDL_SOUND_INTERNAL_H_
--- a/decoders/mpglib.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/mpglib.c Mon Aug 06 09:44:02 2007 +0000 @@ -34,7 +34,7 @@ * source code for mpglib falls under the LGPL, which is the same license as * SDL_sound (so you can consider it a single work). * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -68,7 +68,7 @@ { extensions_mpglib, "MP3 decoding via internal mpglib", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/decoders/ogg.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/ogg.c Mon Aug 06 09:44:02 2007 +0000 @@ -29,7 +29,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -66,7 +66,7 @@ { extensions_ogg, "Ogg Vorbis audio through VorbisFile", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/decoders/raw.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/raw.c Mon Aug 06 09:44:02 2007 +0000 @@ -35,7 +35,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -67,7 +67,7 @@ { extensions_raw, "Raw audio", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/decoders/shn.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/shn.c Mon Aug 06 09:44:02 2007 +0000 @@ -38,7 +38,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -70,7 +70,7 @@ { extensions_shn, "Shorten-compressed audio data", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/decoders/skeleton.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/skeleton.c Mon Aug 06 09:44:02 2007 +0000 @@ -29,7 +29,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #error DO NOT COMPILE THIS. @@ -66,7 +66,7 @@ { extensions_fmt, "FMT audio format description", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/decoders/smpeg.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/smpeg.c Mon Aug 06 09:44:02 2007 +0000 @@ -32,7 +32,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -68,7 +68,7 @@ { extensions_smpeg, "MPEG-1 Layer 3 audio through SMPEG", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://icculus.org/smpeg/" },
--- a/decoders/speex.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/speex.c Mon Aug 06 09:44:02 2007 +0000 @@ -36,7 +36,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -73,7 +73,7 @@ { extensions_speex, "SPEEX speech compression format", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/decoders/timidity/COPYING Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/timidity/COPYING Mon Aug 06 09:44:02 2007 +0000 @@ -4,7 +4,7 @@ terms are not reprinted here, but can be found on the web easily. If you want to use SDL_sound under a closed-source license, please contact - Ryan (icculus@clutteredmind.org), and we can discuss an alternate license for + Ryan (icculus@icculus.org), and we can discuss an alternate license for money to be distributed between the contributors to this work, but I'd encourage you to abide by the LGPL, since the usual concern is whether you can use this library without releasing your own source code (you can).
--- a/decoders/voc.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/voc.c Mon Aug 06 09:44:02 2007 +0000 @@ -34,7 +34,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -66,7 +66,7 @@ { extensions_voc, "Creative Labs Voice format", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/decoders/wav.c Mon Aug 06 09:41:58 2007 +0000 +++ b/decoders/wav.c Mon Aug 06 09:44:02 2007 +0000 @@ -25,7 +25,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H @@ -57,7 +57,7 @@ { extensions_wav, "Microsoft WAVE audio format", - "Ryan C. Gordon <icculus@clutteredmind.org>", + "Ryan C. Gordon <icculus@icculus.org>", "http://www.icculus.org/SDL_sound/" },
--- a/extra_rwops.c Mon Aug 06 09:41:58 2007 +0000 +++ b/extra_rwops.c Mon Aug 06 09:44:02 2007 +0000 @@ -22,7 +22,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #include <stdio.h>
--- a/extra_rwops.h Mon Aug 06 09:41:58 2007 +0000 +++ b/extra_rwops.h Mon Aug 06 09:44:02 2007 +0000 @@ -22,7 +22,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #ifndef _INCLUDE_EXTRA_RWOPS_H_
--- a/mixer/converters.c Mon Aug 06 09:41:58 2007 +0000 +++ b/mixer/converters.c Mon Aug 06 09:44:02 2007 +0000 @@ -25,7 +25,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H
--- a/mixer/mixercore.c Mon Aug 06 09:41:58 2007 +0000 +++ b/mixer/mixercore.c Mon Aug 06 09:44:02 2007 +0000 @@ -25,7 +25,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H
--- a/playsound/physfsrwops.c Mon Aug 06 09:41:58 2007 +0000 +++ b/playsound/physfsrwops.c Mon Aug 06 09:44:02 2007 +0000 @@ -16,7 +16,7 @@ * * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/ * - * This file was written by Ryan C. Gordon. (icculus@clutteredmind.org). + * This file was written by Ryan C. Gordon. (icculus@icculus.org). */ #if SUPPORT_PHYSFS
--- a/playsound/physfsrwops.h Mon Aug 06 09:41:58 2007 +0000 +++ b/playsound/physfsrwops.h Mon Aug 06 09:44:02 2007 +0000 @@ -16,7 +16,7 @@ * * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/ * - * This file was written by Ryan C. Gordon. (icculus@clutteredmind.org). + * This file was written by Ryan C. Gordon. (icculus@icculus.org). */ #ifndef _INCLUDE_PHYSFSRWOPS_H_
--- a/playsound/playsound.c Mon Aug 06 09:41:58 2007 +0000 +++ b/playsound/playsound.c Mon Aug 06 09:44:02 2007 +0000 @@ -22,7 +22,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #if HAVE_CONFIG_H
--- a/playsound/playsound_simple.c Mon Aug 06 09:41:58 2007 +0000 +++ b/playsound/playsound_simple.c Mon Aug 06 09:44:02 2007 +0000 @@ -23,7 +23,7 @@ * * Please see the file COPYING in the source's root directory. * - * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) + * This file written by Ryan C. Gordon. (icculus@icculus.org) */ #include <stdio.h>