summaryrefslogtreecommitdiff
path: root/audio/xwave/patches/patch-ap
blob: 15aea8dcf66a18051981a4f8c0db927cd4207c76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
$NetBSD: patch-ap,v 1.1 2001/11/18 15:03:39 itohy Exp $

--- src/aifc.h.orig	Thu Aug 13 08:27:09 1998
+++ src/aifc.h	Sun Nov 18 21:05:29 2001
@@ -1,5 +1,5 @@
 
-#define ID int
+#define ID int32_t
 #define FORM 0x464F524D
 #define AIFF 0x41494646
 #define AIFC 0x41494643
@@ -13,18 +13,18 @@
 
 typedef struct {
    ID form;
-   long length;
+   int32_t length;
    ID type;
 } Aif_Form;
 
 typedef struct {
    ID type;
-   long length;
+   int32_t length;
 } Aif_Chunk;
 
 typedef struct {
    short channels;
-   unsigned long s_frames;
+   u_int32_t s_frames;
    short bps;
    double freq;
    ID comp_typ;