Boxed updates

This commit is contained in:
Erik Zandvliet 2011-01-12 13:40:08 +01:00
parent 0fcc1c483d
commit 4738624b3e
17 changed files with 269 additions and 17 deletions

14
MP4/box_url.cpp Normal file
View 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;
}