Added new functions to OGG

This commit is contained in:
Oswald de Bruin 2013-06-18 10:29:27 +02:00 committed by Erik Zandvliet
parent 04500e4694
commit 4ea8fe0327
2 changed files with 32 additions and 0 deletions

View file

@ -8,10 +8,13 @@ namespace theora{
bool read(char* newData, unsigned int length);
int getHeaderType();
char getKFGShift();
long unsigned int getPICH();//movie height
long unsigned int getPICW();//movie width
long unsigned int getFRN();//frame rate numerator
long unsigned int getFRD();//frame rate denominator
protected:
uint32_t getInt32(size_t index);
uint32_t getInt24(size_t index);
uint16_t getInt16(size_t index);
private:
char* data;