12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #ifndef __ODCOMMANDS_INCLUDED__
- #define __ODCOMMANDS_INCLUDED__
- const u_int8_t MP4ODUpdateODCommandTag = 0x01;
- const u_int8_t MP4ODRemoveODCommandTag = 0x02;
- const u_int8_t MP4ESUpdateODCommandTag = 0x03;
- const u_int8_t MP4ESRemoveODCommandTag = 0x04;
- const u_int8_t MP4IPMPUpdateODCommandTag = 0x05;
- const u_int8_t MP4IPMPRemoveODCommandTag = 0x06;
- const u_int8_t MP4ESRemoveRefODCommandTag = 0x07;
- class MP4ODUpdateDescriptor : public MP4Descriptor {
- public:
- MP4ODUpdateDescriptor();
- };
- class MP4ODRemoveDescriptor : public MP4Descriptor {
- public:
- MP4ODRemoveDescriptor();
- void Read(MP4File* pFile);
- };
- class MP4ESUpdateDescriptor : public MP4Descriptor {
- public:
- MP4ESUpdateDescriptor();
- };
- class MP4ESRemoveDescriptor : public MP4Descriptor {
- public:
- MP4ESRemoveDescriptor();
- };
- MP4Descriptor* CreateODCommand(u_int8_t tag);
- #endif
|