Boxed updates

This commit is contained in:
Erik Zandvliet 2011-01-12 13:40:08 +01:00
parent 0fcc1c483d
commit 4738624b3e
17 changed files with 269 additions and 17 deletions

18
MP4/box_dref.h Normal file
View file

@ -0,0 +1,18 @@
#include "box.h"
#include <vector>
#include <string>
class Box_dref {
public:
Box_dref();
~Box_dref();
Box * GetBox();
void AddContent( Box * newcontent, uint32_t offset = 0 );
private:
Box * Container;
void SetReserved( );
void WriteContent( );
std::vector<Box *> Content;
};//Box_ftyp Class