MOOF and TRAF boxes created
This commit is contained in:
parent
2aa99228e8
commit
26fedaac9c
5 changed files with 110 additions and 0 deletions
17
MP4/box_moof.h
Normal file
17
MP4/box_moof.h
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue