SMHD en NMHD boxes finished
This commit is contained in:
parent
c180f2695b
commit
d30caedaf1
4 changed files with 61 additions and 0 deletions
18
MP4/box_nmhd.cpp
Normal file
18
MP4/box_nmhd.cpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#include "box_nmhd.h"
|
||||
|
||||
Box_nmhd::Box_nmhd( ) {
|
||||
Container = new Box( 0x6E6D6864 );
|
||||
SetReserved();
|
||||
}
|
||||
|
||||
Box_nmhd::~Box_nmhd() {
|
||||
delete Container;
|
||||
}
|
||||
|
||||
Box * Box_nmhd::GetBox() {
|
||||
return Container;
|
||||
}
|
||||
|
||||
void Box_nmhd::SetReserved( ) {
|
||||
Container->SetPayload((uint32_t)4,Box::uint32_to_uint8(0));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue