MOOF and TRAF boxes created

This commit is contained in:
Erik Zandvliet 2011-02-07 10:48:14 +01:00
parent 2aa99228e8
commit 26fedaac9c
5 changed files with 110 additions and 0 deletions

17
MP4/box_moof.h Normal file
View file

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