Changes till now
This commit is contained in:
parent
fce97a478c
commit
c93a0bb815
8 changed files with 188 additions and 12 deletions
18
MP4/box_stsd.h
Normal file
18
MP4/box_stsd.h
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue