Changes till now

This commit is contained in:
Erik Zandvliet 2010-12-27 16:52:58 +01:00
parent fce97a478c
commit c93a0bb815
8 changed files with 188 additions and 12 deletions

18
MP4/box_stsd.h Normal file
View file

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