mistserver/MP4/box_nmhd.cpp
2011-01-21 20:01:25 +01:00

18 lines
297 B
C++

#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));
}