Remove whitespace lines

This commit is contained in:
Joshua Granick
2018-07-18 17:32:51 -07:00
parent d3269a79ad
commit 78e99bf1d9
447 changed files with 36856 additions and 36888 deletions

View File

@@ -7,19 +7,19 @@
namespace lime {
class OGG {
public:
static bool Decode (Resource *resource, AudioBuffer *audioBuffer);
};
}

View File

@@ -7,19 +7,19 @@
namespace lime {
struct RIFF_Header {
char chunkID[4];
unsigned int chunkSize; //size not including chunkSize or chunkID
char format[4];
};
struct WAVE_Format {
char subChunkID[4];
unsigned int subChunkSize;
short audioFormat;
@@ -28,29 +28,29 @@ namespace lime {
unsigned int byteRate;
short blockAlign;
short bitsPerSample;
};
struct WAVE_Data {
char subChunkID[4]; //should contain the word data
unsigned int subChunkSize; //Stores the size of the data block
};
class WAV {
public:
static bool Decode (Resource *resource, AudioBuffer *audioBuffer);
};
}