Bijna klaar!
This commit is contained in:
parent
5ca7a72b86
commit
a3fd7a5a43
84 changed files with 879 additions and 969 deletions
28
util/MP4/box_nmhd.cpp
Normal file
28
util/MP4/box_nmhd.cpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
#include "box.cpp"
|
||||
|
||||
class Box_nmhd {
|
||||
public:
|
||||
Box_nmhd( );
|
||||
~Box_nmhd();
|
||||
Box * GetBox();
|
||||
private:
|
||||
Box * Container;
|
||||
void SetReserved( );
|
||||
};//Box_ftyp Class
|
||||
|
||||
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