Boxed updates
This commit is contained in:
parent
0fcc1c483d
commit
4738624b3e
17 changed files with 269 additions and 17 deletions
14
MP4/box_url.cpp
Normal file
14
MP4/box_url.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include "box_url.h"
|
||||
|
||||
Box_url::Box_url( ) {
|
||||
Container = new Box( 0x75726C20 );
|
||||
Container->SetPayload((uint32_t)4,Box::uint32_to_uint8(1));
|
||||
}
|
||||
|
||||
Box_url::~Box_url() {
|
||||
delete Container;
|
||||
}
|
||||
|
||||
Box * Box_url::GetBox() {
|
||||
return Container;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue