Major cleanup.
This commit is contained in:
@@ -1,8 +1,6 @@
|
||||
#ifndef WAV_H
|
||||
#define WAV_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "../types.h"
|
||||
|
||||
typedef struct {
|
||||
@@ -10,10 +8,6 @@ typedef struct {
|
||||
u32 chunkSize;
|
||||
} WavChunkHeader;
|
||||
|
||||
typedef struct {
|
||||
char format[4];
|
||||
} WavRiffChunk;
|
||||
|
||||
typedef struct {
|
||||
u16 format;
|
||||
u16 numChannels;
|
||||
@@ -29,7 +23,6 @@ typedef struct {
|
||||
} WavDataChunk;
|
||||
|
||||
typedef struct {
|
||||
WavRiffChunk riff;
|
||||
WavFormatChunk format;
|
||||
WavDataChunk data;
|
||||
} WAV;
|
||||
|
||||
Reference in New Issue
Block a user