summaryrefslogtreecommitdiff
path: root/audio/mad123
diff options
context:
space:
mode:
authorsbd <sbd@pkgsrc.org>2012-07-01 03:25:51 +0000
committersbd <sbd@pkgsrc.org>2012-07-01 03:25:51 +0000
commit5d85baec4240d4a76f2a1fa8c6aa35cb9db99458 (patch)
tree57a6863f3ee87aa8e550762eed4aa81e8957c182 /audio/mad123
parentdea5c0a59b694c46ab1eae2e8092078d04cba3ea (diff)
downloadpkgsrc-5d85baec4240d4a76f2a1fa8c6aa35cb9db99458.tar.gz
In audio_dev.c allways include stdint.h
Diffstat (limited to 'audio/mad123')
-rw-r--r--audio/mad123/distinfo4
-rw-r--r--audio/mad123/patches/patch-ab19
2 files changed, 11 insertions, 12 deletions
diff --git a/audio/mad123/distinfo b/audio/mad123/distinfo
index 80aa168157a..142c27c2cf4 100644
--- a/audio/mad123/distinfo
+++ b/audio/mad123/distinfo
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.9 2012/06/28 08:18:43 sbd Exp $
+$NetBSD: distinfo,v 1.10 2012/07/01 03:25:51 sbd Exp $
SHA1 (mad123-0.8.5.tar.gz) = 97c5d6185a54e2262d52a687ff3a3714ff260af8
RMD160 (mad123-0.8.5.tar.gz) = bd2bf0b79a3c9d3513583daccdfc182a2d17cc41
Size (mad123-0.8.5.tar.gz) = 24836 bytes
SHA1 (patch-aa) = c2b6eb6eb4b23151c31ae7031150baae403aefad
-SHA1 (patch-ab) = caaf521e4d62c96fade0619c457ad6e5f58263a0
+SHA1 (patch-ab) = 55d046e95e740520b9a74cdc764eb37a59cbf049
SHA1 (patch-ac) = 7c150b2f15cbc00876c8619b80ee29c73b0b71df
SHA1 (patch-audio__dev.h) = 699760f797aa4b90a5672b42b24e08443fe0ae69
SHA1 (patch-mp3__stream.c) = bfd36ec13ab8f78e65007692195ed12275ffc0d8
diff --git a/audio/mad123/patches/patch-ab b/audio/mad123/patches/patch-ab
index d32eb100c61..f2680e10bfc 100644
--- a/audio/mad123/patches/patch-ab
+++ b/audio/mad123/patches/patch-ab
@@ -1,20 +1,19 @@
-$NetBSD: patch-ab,v 1.4 2012/06/28 08:18:43 sbd Exp $
+$NetBSD: patch-ab,v 1.5 2012/07/01 03:25:51 sbd Exp $
--- audio_dev.c.orig 2004-09-22 09:23:43.000000000 +0000
+++ audio_dev.c
-@@ -22,7 +22,11 @@
+@@ -22,7 +22,10 @@
#include <sys/types.h>
#include <sys/param.h>
#include <sys/fcntl.h>
+#ifndef __linux__
#include <sys/filio.h>
-+#else
-+#include <stdint.h>
+#endif
++#include <stdint.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/wait.h>
-@@ -35,6 +39,10 @@
+@@ -35,6 +38,10 @@
#include <unistd.h>
#include <mad.h>
@@ -25,7 +24,7 @@ $NetBSD: patch-ab,v 1.4 2012/06/28 08:18:43 sbd Exp $
#include "audio_dev.h"
#if (BYTE_ORDER == BIG_ENDIAN)
-@@ -43,6 +51,10 @@
+@@ -43,6 +50,10 @@
#undef WORDS_BIGENDIAN
#endif
@@ -36,7 +35,7 @@ $NetBSD: patch-ab,v 1.4 2012/06/28 08:18:43 sbd Exp $
#define PCM_BUFFSIZE ((sizeof(((struct mad_pcm *)0)->samples) / \
sizeof(mad_fixed_t)) * 2)
struct pcm_data {
-@@ -58,7 +70,7 @@ struct pcm_data {
+@@ -58,7 +69,7 @@ struct pcm_data {
#define PCM_LOW_WATER 32
struct pcm_buffer {
volatile int pb_command;
@@ -45,7 +44,7 @@ $NetBSD: patch-ab,v 1.4 2012/06/28 08:18:43 sbd Exp $
int pb_rate;
int pb_nchannels;
volatile int pb_purge;
-@@ -74,7 +86,7 @@ struct audio_dev_ctx {
+@@ -74,7 +85,7 @@ struct audio_dev_ctx {
int ac_paused;
int ac_peerread;
int ac_peerwrite;
@@ -54,7 +53,7 @@ $NetBSD: patch-ab,v 1.4 2012/06/28 08:18:43 sbd Exp $
void (*ac_readcallback)(void *);
void *ac_cbarg;
struct pcm_buffer *ac_pcm;
-@@ -97,8 +109,12 @@ static void audio_convert_dither(unsigne
+@@ -97,8 +108,12 @@ static void audio_convert_dither(unsigne
static const struct audio_dev_backend *audio_dev_backends[] = {
@@ -67,7 +66,7 @@ $NetBSD: patch-ab,v 1.4 2012/06/28 08:18:43 sbd Exp $
#ifndef NOARTS
&audio_dev_arts,
#endif
-@@ -326,7 +342,7 @@ audio_dev_output(struct audio_dev_ctx *a
+@@ -326,7 +341,7 @@ audio_dev_output(struct audio_dev_ctx *a
pd->pd_len = len;
written /= pd->pd_nchannels;