From c40d4d90e6ba30bbfe68df5a449919e292839a59 Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Thu, 11 Nov 2004 08:44:17 +0000 Subject: Add speex-devel The Speex is a patent-free, Open Source/Free Software voice codec. Unlike other codecs like MP3 and Ogg Vorbis, Speex is designed to compress voice at bitrates in the 2-45 kbps range. Possible applications include VoIP, internet audio streaming, archiving of speech data (e.g. voice mail), and audio books. In some sense, it is meant to be complementary to the Ogg Vorbis codec. -- Speex 1.1 is backwards compatible with speex 1.0 and can be used as a drop in replacement for audio/speex Approved by: pav (co mentor) --- audio/speex-devel/files/patch-libspeex::stack_alloc.h | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 audio/speex-devel/files/patch-libspeex::stack_alloc.h (limited to 'audio/speex-devel/files/patch-libspeex::stack_alloc.h') diff --git a/audio/speex-devel/files/patch-libspeex::stack_alloc.h b/audio/speex-devel/files/patch-libspeex::stack_alloc.h deleted file mode 100644 index 25883aab513f..000000000000 --- a/audio/speex-devel/files/patch-libspeex::stack_alloc.h +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- libspeex/stack_alloc.h.orig Wed Jun 11 17:10:53 2003 -+++ libspeex/stack_alloc.h Wed Jun 11 17:11:12 2003 -@@ -48,7 +48,7 @@ - #else - - /*Aligns the stack to a 'size' boundary */ --#define ALIGN(stack, size) ((stack) += ((size) - (int)(stack)) & ((size) - 1)) -+#define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1)) - - /* Allocates 'size' elements of type 'type' on the stack */ - #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)),(stack)+=((size)*sizeof(type)),(type*)((stack)-((size)*sizeof(type)))) -- cgit v1.2.3