More boxes

This commit is contained in:
Erik Zandvliet 2011-01-13 15:19:12 +01:00
parent 6d1ae13193
commit 927996365e
9 changed files with 206 additions and 1 deletions

17
MP4/box_mdia.h Normal file
View file

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