Merge branch 'oggLib' of github.com:DDVTECH/libmist into oggLib
Conflicts: lib/Makefile.am lib/ogg.cpp Ogg completed further
This commit is contained in:
parent
7810c9428d
commit
8cae5f1fc6
3 changed files with 121 additions and 2 deletions
19
lib/theora.h
Normal file
19
lib/theora.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include<sys/types.h>
|
||||
#include<stdint.h>
|
||||
|
||||
namespace theora{
|
||||
class header{
|
||||
public:
|
||||
header();
|
||||
bool read(char* newData, unsigned int length);
|
||||
int getHeaderType();
|
||||
long unsigned int getFRN();
|
||||
long unsigned int getFRD();
|
||||
protected:
|
||||
uint32_t getInt32(size_t index);
|
||||
private:
|
||||
char* data;
|
||||
unsigned int datasize;
|
||||
bool checkDataSize(unsigned int size);
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue