Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 76941 Details for
Bug 118812
media-sound/gramofile-1.6 writes wrong wav headers when recording
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patchfile to patch bplaysrc/fmtheaders.h to use 32bit types
gramofile-1.6-r2-64bit.patch (text/plain), 1.68 KB, created by
Volker Schroer
on 2006-01-12 13:21:35 UTC
(
hide
)
Description:
patchfile to patch bplaysrc/fmtheaders.h to use 32bit types
Filename:
MIME Type:
Creator:
Volker Schroer
Created:
2006-01-12 13:21:35 UTC
Size:
1.68 KB
patch
obsolete
>--- bplaysrc/fmtheaders.h.old 2006-01-10 22:33:00.000000000 +0100 >+++ bplaysrc/fmtheaders.h 2006-01-10 22:40:36.000000000 +0100 >@@ -2,7 +2,7 @@ > #define _FMTHEADERS_H 1 > > #include <sys/types.h> >- >+#include <asm/types.h> > /* Definitions for .VOC files */ > > #define VOC_MAGIC "Creative Voice File\032" >@@ -51,21 +51,22 @@ > it works on all WAVE-file I have > */ > typedef struct wavhead { >- u_long main_chunk; /* 'RIFF' */ >- u_long length; /* Length of rest of file */ >- u_long chunk_type; /* 'WAVE' */ >- >- u_long sub_chunk; /* 'fmt ' */ >- u_long sc_len; /* length of sub_chunk, =16 (rest of chunk) */ >- u_short format; /* should be 1 for PCM-code */ >- u_short modus; /* 1 Mono, 2 Stereo */ >- u_long sample_fq; /* frequence of sample */ >- u_long byte_p_sec; >- u_short byte_p_spl; /* samplesize; 1 or 2 bytes */ >- u_short bit_p_spl; /* 8, 12 or 16 bit */ >+ __u32 main_chunk; /* 'RIFF' */ >+ __u32 length; /* Length of rest of file */ >+ __u32 chunk_type; /* 'WAVE' */ >+ >+ __u32 sub_chunk; /* 'fmt ' */ >+ __u32 sc_len; /* length of sub_chunk, =16 (rest of chunk) */ >+ u_short format; /* should be 1 for PCM-code */ >+ u_short modus; /* 1 Mono, 2 Stereo */ >+ __u32 sample_fq; /* frequence of sample */ >+ __u32 byte_p_sec; >+ u_short byte_p_spl; /* samplesize; 1 or 2 bytes */ >+ u_short bit_p_spl; /* 8, 12 or 16 bit */ >+ >+ __u32 data_chunk; /* 'data' */ >+ __u32 data_length; /* samplecount (lenth of rest of block?) */ > >- u_long data_chunk; /* 'data' */ >- u_long data_length; /* samplecount (lenth of rest of block?)*/ > } wavhead; > > #endif
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 118812
: 76941