865 lines
26 KiB
C++
865 lines
26 KiB
C++
#pragma once
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <iomanip>
|
|
#include <cstdio>
|
|
#include <stdint.h>
|
|
#include <sstream>
|
|
#include <deque>
|
|
#include <algorithm>
|
|
#include "json.h"
|
|
|
|
/// Contains all MP4 format related code.
|
|
namespace MP4 {
|
|
|
|
class Box{
|
|
public:
|
|
Box(char * datapointer = 0, bool manage = true);
|
|
~Box();
|
|
std::string getType();
|
|
bool isType(const char* boxType);
|
|
bool read(std::string & newData);
|
|
uint64_t boxedSize();
|
|
uint64_t payloadSize();
|
|
char * asBox();
|
|
char * payload();
|
|
void clear();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
protected:
|
|
//integer functions
|
|
void setInt8(char newData, size_t index);
|
|
char getInt8(size_t index);
|
|
void setInt16(short newData, size_t index);
|
|
short getInt16(size_t index);
|
|
void setInt24(uint32_t newData, size_t index);
|
|
uint32_t getInt24(size_t index);
|
|
void setInt32(uint32_t newData, size_t index);
|
|
uint32_t getInt32(size_t index);
|
|
void setInt64(uint64_t newData, size_t index);
|
|
uint64_t getInt64(size_t index);
|
|
//string functions
|
|
void setString(std::string newData, size_t index);
|
|
void setString(char* newData, size_t size, size_t index);
|
|
char * getString(size_t index);
|
|
size_t getStringLen(size_t index);
|
|
//box functions
|
|
Box & getBox(size_t index);
|
|
size_t getBoxLen(size_t index);
|
|
void setBox(Box & newEntry, size_t index);
|
|
//data functions
|
|
bool reserve(size_t position, size_t current, size_t wanted);
|
|
//internal variables
|
|
char * data; ///< Holds the data of this box
|
|
int data_size; ///< Currently reserved size
|
|
bool managed; ///< If false, will not attempt to resize/free the data pointer.
|
|
int payloadOffset; ///<The offset of the payload with regards to the data
|
|
};
|
|
//Box Class
|
|
|
|
class fullBox: public Box{
|
|
public:
|
|
void setVersion(char newVersion);
|
|
char getVersion();
|
|
void setFlags(uint32_t newFlags);
|
|
uint32_t getFlags();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class containerBox: public Box{
|
|
public:
|
|
//containerBox();
|
|
uint32_t getContentCount();
|
|
void setContent(Box & newContent, uint32_t no);
|
|
Box & getContent(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
std::string toPrettyContainerString(uint32_t indent, std::string boxName);
|
|
};
|
|
|
|
class containerFullBox: public fullBox{
|
|
public:
|
|
uint32_t getContentCount();
|
|
void setContent(Box & newContent, uint32_t no);
|
|
Box & getContent(uint32_t no);
|
|
std::string toPrettyCFBString(uint32_t indent, std::string boxName);
|
|
};
|
|
|
|
struct afrt_runtable{
|
|
uint32_t firstFragment;
|
|
uint64_t firstTimestamp;
|
|
uint32_t duration;
|
|
uint32_t discontinuity;
|
|
};
|
|
//fragmentRun
|
|
|
|
/// AFRT Box class
|
|
class AFRT: public Box{
|
|
public:
|
|
AFRT();
|
|
void setVersion(char newVersion);
|
|
uint32_t getVersion();
|
|
void setUpdate(uint32_t newUpdate);
|
|
uint32_t getUpdate();
|
|
void setTimeScale(uint32_t newScale);
|
|
uint32_t getTimeScale();
|
|
uint32_t getQualityEntryCount();
|
|
void setQualityEntry(std::string & newQuality, uint32_t no);
|
|
const char * getQualityEntry(uint32_t no);
|
|
uint32_t getFragmentRunCount();
|
|
void setFragmentRun(afrt_runtable newRun, uint32_t no);
|
|
afrt_runtable getFragmentRun(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
//AFRT Box
|
|
|
|
struct asrt_runtable{
|
|
uint32_t firstSegment;
|
|
uint32_t fragmentsPerSegment;
|
|
};
|
|
|
|
/// ASRT Box class
|
|
class ASRT: public Box{
|
|
public:
|
|
ASRT();
|
|
void setVersion(char newVersion);
|
|
uint32_t getVersion();
|
|
void setUpdate(uint32_t newUpdate);
|
|
uint32_t getUpdate();
|
|
uint32_t getQualityEntryCount();
|
|
void setQualityEntry(std::string & newQuality, uint32_t no);
|
|
const char* getQualityEntry(uint32_t no);
|
|
uint32_t getSegmentRunEntryCount();
|
|
void setSegmentRun(uint32_t firstSegment, uint32_t fragmentsPerSegment, uint32_t no);
|
|
asrt_runtable getSegmentRun(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
//ASRT Box
|
|
|
|
/// ABST Box class
|
|
class ABST: public Box{
|
|
public:
|
|
ABST();
|
|
void setVersion(char newVersion);
|
|
char getVersion();
|
|
void setFlags(uint32_t newFlags);
|
|
uint32_t getFlags();
|
|
void setBootstrapinfoVersion(uint32_t newVersion);
|
|
uint32_t getBootstrapinfoVersion();
|
|
void setProfile(char newProfile);
|
|
char getProfile();
|
|
void setLive(bool newLive);
|
|
bool getLive();
|
|
void setUpdate(bool newUpdate);
|
|
bool getUpdate();
|
|
void setTimeScale(uint32_t newTimeScale);
|
|
uint32_t getTimeScale();
|
|
void setCurrentMediaTime(uint64_t newTime);
|
|
uint64_t getCurrentMediaTime();
|
|
void setSmpteTimeCodeOffset(uint64_t newTime);
|
|
uint64_t getSmpteTimeCodeOffset();
|
|
void setMovieIdentifier(std::string & newIdentifier);
|
|
char * getMovieIdentifier();
|
|
uint32_t getServerEntryCount();
|
|
void setServerEntry(std::string & entry, uint32_t no);
|
|
const char * getServerEntry(uint32_t no);
|
|
uint32_t getQualityEntryCount();
|
|
void setQualityEntry(std::string & entry, uint32_t no);
|
|
const char * getQualityEntry(uint32_t no);
|
|
void setDrmData(std::string newDrm);
|
|
char * getDrmData();
|
|
void setMetaData(std::string newMetaData);
|
|
char * getMetaData();
|
|
uint32_t getSegmentRunTableCount();
|
|
void setSegmentRunTable(ASRT & table, uint32_t no);
|
|
ASRT & getSegmentRunTable(uint32_t no);
|
|
uint32_t getFragmentRunTableCount();
|
|
void setFragmentRunTable(AFRT & table, uint32_t no);
|
|
AFRT & getFragmentRunTable(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
//ABST Box
|
|
|
|
class MFHD: public Box{
|
|
public:
|
|
MFHD();
|
|
void setSequenceNumber(uint32_t newSequenceNumber);
|
|
uint32_t getSequenceNumber();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
//MFHD Box
|
|
|
|
/*class MOOF: public Box{
|
|
public:
|
|
MOOF();
|
|
uint32_t getContentCount();
|
|
void setContent(Box & newContent, uint32_t no);
|
|
Box & getContent(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};*/
|
|
|
|
class MOOF: public containerBox{
|
|
public:
|
|
MOOF();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
//MOOF Box
|
|
|
|
class TRAF: public Box{
|
|
public:
|
|
TRAF();
|
|
uint32_t getContentCount();
|
|
void setContent(Box & newContent, uint32_t no);
|
|
Box & getContent(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
//TRAF Box
|
|
|
|
struct trunSampleInformation{
|
|
uint32_t sampleDuration;
|
|
uint32_t sampleSize;
|
|
uint32_t sampleFlags;
|
|
uint32_t sampleOffset;
|
|
};
|
|
enum trunflags{
|
|
trundataOffset = 0x00000001,
|
|
trunfirstSampleFlags = 0x00000004,
|
|
trunsampleDuration = 0x00000100,
|
|
trunsampleSize = 0x00000200,
|
|
trunsampleFlags = 0x00000400,
|
|
trunsampleOffsets = 0x00000800
|
|
};
|
|
enum sampleflags{
|
|
noIPicture = 0x01000000,
|
|
isIPicture = 0x02000000,
|
|
noDisposable = 0x00400000,
|
|
isDisposable = 0x00800000,
|
|
isRedundant = 0x00100000,
|
|
noRedundant = 0x00200000,
|
|
noKeySample = 0x00010000,
|
|
isKeySample = 0x00000000,
|
|
MUST_BE_PRESENT = 0x1
|
|
};
|
|
std::string prettySampleFlags(uint32_t flag);
|
|
class TRUN: public Box{
|
|
public:
|
|
TRUN();
|
|
void setFlags(uint32_t newFlags);
|
|
uint32_t getFlags();
|
|
void setDataOffset(uint32_t newOffset);
|
|
uint32_t getDataOffset();
|
|
void setFirstSampleFlags(uint32_t newSampleFlags);
|
|
uint32_t getFirstSampleFlags();
|
|
uint32_t getSampleInformationCount();
|
|
void setSampleInformation(trunSampleInformation newSample, uint32_t no);
|
|
trunSampleInformation getSampleInformation(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
enum tfhdflags{
|
|
tfhdBaseOffset = 0x000001,
|
|
tfhdSampleDesc = 0x000002,
|
|
tfhdSampleDura = 0x000008,
|
|
tfhdSampleSize = 0x000010,
|
|
tfhdSampleFlag = 0x000020,
|
|
tfhdNoDuration = 0x010000,
|
|
};
|
|
class TFHD: public Box{
|
|
public:
|
|
TFHD();
|
|
void setFlags(uint32_t newFlags);
|
|
uint32_t getFlags();
|
|
void setTrackID(uint32_t newID);
|
|
uint32_t getTrackID();
|
|
void setBaseDataOffset(uint64_t newOffset);
|
|
uint64_t getBaseDataOffset();
|
|
void setSampleDescriptionIndex(uint32_t newIndex);
|
|
uint32_t getSampleDescriptionIndex();
|
|
void setDefaultSampleDuration(uint32_t newDuration);
|
|
uint32_t getDefaultSampleDuration();
|
|
void setDefaultSampleSize(uint32_t newSize);
|
|
uint32_t getDefaultSampleSize();
|
|
void setDefaultSampleFlags(uint32_t newFlags);
|
|
uint32_t getDefaultSampleFlags();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
struct afraentry{
|
|
uint64_t time;
|
|
uint64_t offset;
|
|
};
|
|
struct globalafraentry{
|
|
uint64_t time;
|
|
uint32_t segment;
|
|
uint32_t fragment;
|
|
uint64_t afraoffset;
|
|
uint64_t offsetfromafra;
|
|
};
|
|
class AFRA: public Box{
|
|
public:
|
|
AFRA();
|
|
void setVersion(uint32_t newVersion);
|
|
uint32_t getVersion();
|
|
void setFlags(uint32_t newFlags);
|
|
uint32_t getFlags();
|
|
void setLongIDs(bool newVal);
|
|
bool getLongIDs();
|
|
void setLongOffsets(bool newVal);
|
|
bool getLongOffsets();
|
|
void setGlobalEntries(bool newVal);
|
|
bool getGlobalEntries();
|
|
void setTimeScale(uint32_t newVal);
|
|
uint32_t getTimeScale();
|
|
uint32_t getEntryCount();
|
|
void setEntry(afraentry newEntry, uint32_t no);
|
|
afraentry getEntry(uint32_t no);
|
|
uint32_t getGlobalEntryCount();
|
|
void setGlobalEntry(globalafraentry newEntry, uint32_t no);
|
|
globalafraentry getGlobalEntry(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class AVCC: public Box{
|
|
public:
|
|
AVCC();
|
|
void setVersion(uint32_t newVersion);
|
|
uint32_t getVersion();
|
|
void setProfile(uint32_t newProfile);
|
|
uint32_t getProfile();
|
|
void setCompatibleProfiles(uint32_t newCompatibleProfiles);
|
|
uint32_t getCompatibleProfiles();
|
|
void setLevel(uint32_t newLevel);
|
|
uint32_t getLevel();
|
|
void setSPSNumber(uint32_t newSPSNumber);
|
|
uint32_t getSPSNumber();
|
|
void setSPS(std::string newSPS);
|
|
uint32_t getSPSLen();
|
|
char* getSPS();
|
|
void setPPSNumber(uint32_t newPPSNumber);
|
|
uint32_t getPPSNumber();
|
|
void setPPS(std::string newPPS);
|
|
uint32_t getPPSLen();
|
|
char* getPPS();
|
|
std::string asAnnexB();
|
|
void setPayload(std::string newPayload);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class SDTP: public Box{
|
|
public:
|
|
SDTP();
|
|
void setVersion(uint32_t newVersion);
|
|
uint32_t getVersion();
|
|
void setValue(uint32_t newValue, size_t index);
|
|
uint32_t getValue(size_t index);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class FTYP: public Box{
|
|
public:
|
|
FTYP();
|
|
void setMajorBrand(uint32_t newMajorBrand);
|
|
uint32_t getMajorBrand();
|
|
void setMinorVersion(uint32_t newMinorVersion);
|
|
uint32_t getMinorVersion();
|
|
uint32_t getCompatibleBrandsCount();
|
|
void setCompatibleBrands(uint32_t newCompatibleBrand, size_t index);
|
|
uint32_t getCompatibleBrands(size_t index);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MOOV: public containerBox{
|
|
public:
|
|
MOOV();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MVEX: public containerBox{
|
|
public:
|
|
MVEX();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class TREX: public Box{
|
|
public:
|
|
TREX();
|
|
void setTrackID(uint32_t newTrackID);
|
|
uint32_t getTrackID();
|
|
void setDefaultSampleDescriptionIndex(uint32_t newDefaultSampleDescriptionIndex);
|
|
uint32_t getDefaultSampleDescriptionIndex();
|
|
void setDefaultSampleDuration(uint32_t newDefaultSampleDuration);
|
|
uint32_t getDefaultSampleDuration();
|
|
void setDefaultSampleSize(uint32_t newDefaultSampleSize);
|
|
uint32_t getDefaultSampleSize();
|
|
void setDefaultSampleFlags(uint32_t newDefaultSampleFlags);
|
|
uint32_t getDefaultSampleFlags();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
|
|
class MFRA: public containerBox{
|
|
public:
|
|
MFRA();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class TRAK: public containerBox{
|
|
public:
|
|
TRAK();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MDIA: public containerBox{
|
|
public:
|
|
MDIA();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MINF: public containerBox{
|
|
public:
|
|
MINF();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class DINF: public containerBox{
|
|
public:
|
|
DINF();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MFRO: public Box{
|
|
public:
|
|
MFRO();
|
|
void setSize(uint32_t newSize);
|
|
uint32_t getSize();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class HDLR: public Box{
|
|
public:
|
|
HDLR();
|
|
void setSize(uint32_t newSize);
|
|
uint32_t getSize();
|
|
void setPreDefined(uint32_t newPreDefined);
|
|
uint32_t getPreDefined();
|
|
void setHandlerType(uint32_t newHandlerType);
|
|
uint32_t getHandlerType();
|
|
void setName(std::string newName);
|
|
std::string getName();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class VMHD: public fullBox{
|
|
public:
|
|
VMHD();
|
|
void setGraphicsMode(uint16_t newGraphicsMode);
|
|
uint16_t getGraphicsMode();
|
|
uint32_t getOpColorCount();
|
|
void setOpColor(uint16_t newOpColor, size_t index);
|
|
uint16_t getOpColor(size_t index);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class SMHD: public fullBox{
|
|
public:
|
|
SMHD();
|
|
void setBalance(int16_t newBalance);
|
|
int16_t getBalance();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class HMHD: public fullBox{
|
|
public:
|
|
HMHD();
|
|
void setMaxPDUSize(uint16_t newMaxPDUSize);
|
|
uint16_t getMaxPDUSize();
|
|
void setAvgPDUSize(uint16_t newAvgPDUSize);
|
|
uint16_t getAvgPDUSize();
|
|
void setMaxBitRate(uint32_t newMaxBitRate);
|
|
uint32_t getMaxBitRate();
|
|
void setAvgBitRate(uint32_t newAvgBitRate);
|
|
uint32_t getAvgBitRate();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class NMHD: public fullBox{
|
|
public:
|
|
NMHD();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MEHD: public fullBox{
|
|
public:
|
|
MEHD();
|
|
void setFragmentDuration(uint64_t newFragmentDuration);
|
|
uint64_t getFragmentDuration();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class STBL: public containerBox{
|
|
public:
|
|
STBL();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class URL: public fullBox{
|
|
public:
|
|
URL();
|
|
void setLocation(std::string newLocation);
|
|
std::string getLocation();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class URN: public fullBox{
|
|
public:
|
|
URN();
|
|
void setName(std::string newName);
|
|
std::string getName();
|
|
void setLocation(std::string newLocation);
|
|
std::string getLocation();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class DREF: public fullBox{
|
|
public:
|
|
DREF();
|
|
uint32_t getEntryCount();
|
|
void setDataEntry(fullBox & newDataEntry, size_t index);
|
|
Box & getDataEntry(size_t index);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MVHD: public fullBox{
|
|
public:
|
|
MVHD();
|
|
void setCreationTime(uint64_t newCreationTime);
|
|
uint64_t getCreationTime();
|
|
void setModificationTime(uint64_t newModificationTime);
|
|
uint64_t getModificationTime();
|
|
void setTimeScale(uint32_t newTimeScale);
|
|
uint32_t getTimeScale();
|
|
void setDuration(uint64_t newDuration);
|
|
uint64_t getDuration();
|
|
void setRate(uint32_t newRate);
|
|
uint32_t getRate();
|
|
void setVolume(uint16_t newVolume);
|
|
uint16_t getVolume();
|
|
///\todo fix default values
|
|
uint32_t getMatrixCount();
|
|
void setMatrix(int32_t newMatrix, size_t index);
|
|
int32_t getMatrix(size_t index);
|
|
void setTrackID(uint32_t newTrackID);
|
|
uint32_t getTrackID();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
struct TFRAEntry{
|
|
uint64_t time;
|
|
uint64_t moofOffset;
|
|
uint32_t trafNumber;
|
|
uint32_t trunNumber;
|
|
uint32_t sampleNumber;
|
|
};
|
|
|
|
class TFRA: public fullBox{
|
|
public:
|
|
TFRA();
|
|
void setTrackID(uint32_t newTrackID);
|
|
uint32_t getTrackID();
|
|
void setLengthSizeOfTrafNum(char newVal);
|
|
char getLengthSizeOfTrafNum();
|
|
void setLengthSizeOfTrunNum(char newVal);
|
|
char getLengthSizeOfTrunNum();
|
|
void setLengthSizeOfSampleNum(char newVal);
|
|
char getLengthSizeOfSampleNum();
|
|
void setNumberOfEntry(uint32_t newNumberOfEntry);
|
|
uint32_t getNumberOfEntry();
|
|
void setTFRAEntry(TFRAEntry newTFRAEntry, uint32_t no);
|
|
TFRAEntry & getTFRAEntry(uint32_t no);
|
|
uint32_t getTFRAEntrySize();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class TKHD: public fullBox{
|
|
public:
|
|
TKHD();
|
|
void setCreationTime(uint64_t newCreationTime);
|
|
uint64_t getCreationTime();
|
|
void setModificationTime(uint64_t newModificationTime);
|
|
uint64_t getModificationTime();
|
|
void setTrackID(uint32_t newTrackID);
|
|
uint32_t getTrackID();
|
|
void setDuration(uint64_t newDuration);
|
|
uint64_t getDuration();
|
|
|
|
void setLayer(uint16_t newLayer);
|
|
uint16_t getLayer();
|
|
void setAlternateGroup(uint16_t newAlternateGroup);
|
|
uint16_t getAlternateGroup();
|
|
|
|
void setVolume(uint16_t newVolume);
|
|
uint16_t getVolume();
|
|
///\todo fix default values
|
|
uint32_t getMatrixCount();
|
|
void setMatrix(int32_t newMatrix, size_t index);
|
|
int32_t getMatrix(size_t index);
|
|
|
|
void setWidth(uint32_t newWidth);
|
|
uint32_t getWidth();
|
|
void setHeight(uint32_t newHeight);
|
|
uint32_t getHeight();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class MDHD: public fullBox{
|
|
public:
|
|
MDHD();
|
|
void setCreationTime(uint64_t newCreationTime);
|
|
uint64_t getCreationTime();
|
|
void setModificationTime(uint64_t newModificationTime);
|
|
uint64_t getModificationTime();
|
|
void setTimeScale(uint32_t newTimeScale);
|
|
uint32_t getTimeScale();
|
|
void setDuration(uint64_t newDuration);
|
|
uint64_t getDuration();
|
|
///\todo return language properly
|
|
void setLanguage(uint16_t newLanguage);
|
|
uint16_t getLanguage();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
struct STTSEntry{
|
|
uint32_t sampleCount;
|
|
uint32_t sampleDelta;
|
|
};
|
|
|
|
class STTS: public fullBox{
|
|
public:
|
|
STTS();
|
|
void setEntryCount(uint32_t newEntryCount);
|
|
uint32_t getEntryCount();
|
|
void setSTTSEntry(STTSEntry newSTTSEntry, uint32_t no);
|
|
STTSEntry getSTTSEntry(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
struct CTTSEntry{
|
|
uint32_t sampleCount;
|
|
uint32_t sampleOffset;
|
|
};
|
|
|
|
class CTTS: public fullBox{
|
|
public:
|
|
CTTS();
|
|
void setEntryCount(uint32_t newEntryCount);
|
|
uint32_t getEntryCount();
|
|
void setCTTSEntry(CTTSEntry newCTTSEntry, uint32_t no);
|
|
CTTSEntry getCTTSEntry(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
struct STSCEntry{
|
|
uint32_t firstChunk;
|
|
uint32_t samplesPerChunk;
|
|
uint32_t sampleDescriptionIndex;
|
|
};
|
|
|
|
class STSC: public fullBox{
|
|
public:
|
|
STSC();
|
|
void setEntryCount(uint32_t newEntryCount);
|
|
uint32_t getEntryCount();
|
|
void setSTSCEntry(STSCEntry newSTSCEntry, uint32_t no);
|
|
STSCEntry getSTSCEntry(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class STCO: public fullBox{
|
|
public:
|
|
STCO();
|
|
void setEntryCount(uint32_t newEntryCount);
|
|
uint32_t getEntryCount();
|
|
void setChunkOffset(uint32_t newChunkOffset, uint32_t no);
|
|
uint32_t getChunkOffset(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class STSZ: public fullBox{
|
|
public:
|
|
STSZ();
|
|
void setSampleSize(uint32_t newSampleSize);
|
|
uint32_t getSampleSize();
|
|
void setSampleCount(uint32_t newSampleCount);
|
|
uint32_t getSampleCount();
|
|
void setEntrySize(uint32_t newEntrySize, uint32_t no);
|
|
uint32_t getEntrySize(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class SampleEntry: public Box{
|
|
public:
|
|
SampleEntry();
|
|
void setDataReferenceIndex(uint16_t newDataReferenceIndex);
|
|
uint16_t getDataReferenceIndex();
|
|
std::string toPrettySampleString(uint32_t index);
|
|
};
|
|
|
|
class CLAP: public Box{//CleanApertureBox
|
|
public:
|
|
CLAP();
|
|
void setCleanApertureWidthN(uint32_t newVal);
|
|
uint32_t getCleanApertureWidthN();
|
|
void setCleanApertureWidthD(uint32_t newVal);
|
|
uint32_t getCleanApertureWidthD();
|
|
void setCleanApertureHeightN(uint32_t newVal);
|
|
uint32_t getCleanApertureHeightN();
|
|
void setCleanApertureHeightD(uint32_t newVal);
|
|
uint32_t getCleanApertureHeightD();
|
|
void setHorizOffN(uint32_t newVal);
|
|
uint32_t getHorizOffN();
|
|
void setHorizOffD(uint32_t newVal);
|
|
uint32_t getHorizOffD();
|
|
void setVertOffN(uint32_t newVal);
|
|
uint32_t getVertOffN();
|
|
void setVertOffD(uint32_t newVal);
|
|
uint32_t getVertOffD();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class PASP: public Box{ //PixelAspectRatioBox
|
|
public:
|
|
PASP();
|
|
void setHSpacing(uint32_t newVal);
|
|
uint32_t getHSpacing();
|
|
void setVSpacing(uint32_t newVal);
|
|
uint32_t getVSpacing();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class VisualSampleEntry: public SampleEntry{
|
|
///\todo set default values
|
|
public:
|
|
VisualSampleEntry();
|
|
void setWidth(uint16_t newWidth);
|
|
uint16_t getWidth();
|
|
void setHeight(uint16_t newHeight);
|
|
uint16_t getHeight();
|
|
void setHorizResolution (uint32_t newHorizResolution);
|
|
uint32_t getHorizResolution();
|
|
void setVertResolution (uint32_t newVertResolution);
|
|
uint32_t getVertResolution();
|
|
void setFrameCount(uint16_t newFrameCount);
|
|
uint16_t getFrameCount();
|
|
void setCompressorName(std::string newCompressorName);
|
|
std::string getCompressorName();
|
|
void setDepth(uint16_t newDepth);
|
|
uint16_t getDepth();
|
|
Box & getCLAP();
|
|
Box & getPASP();
|
|
std::string toPrettyVisualString(uint32_t index = 0, std::string = "");
|
|
};
|
|
|
|
class AudioSampleEntry: public SampleEntry{
|
|
public:
|
|
///\todo set default values
|
|
AudioSampleEntry();
|
|
void setChannelCount(uint16_t newChannelCount);
|
|
uint16_t getChannelCount();
|
|
void setSampleSize(uint16_t newSampleSize);
|
|
uint16_t getSampleSize();
|
|
void setPreDefined(uint16_t newPreDefined);
|
|
uint16_t getPreDefined();
|
|
void setSampleRate(uint32_t newSampleRate);
|
|
uint32_t getSampleRate();
|
|
std::string toPrettyAudioString(uint32_t indent = 0, std::string name = "");
|
|
};
|
|
|
|
class MP4A: public AudioSampleEntry{
|
|
public:
|
|
MP4A();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class AVC1: public VisualSampleEntry{
|
|
public:
|
|
AVC1();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class STSD: public fullBox{
|
|
public:
|
|
STSD();
|
|
void setEntryCount (uint32_t newEntryCount);
|
|
uint32_t getEntryCount();
|
|
void setEntry(Box & newContent, uint32_t no);
|
|
Box & getEntry(uint32_t no);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class EDTS: public containerBox{
|
|
public:
|
|
EDTS();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class UDTA: public containerBox{
|
|
public:
|
|
UDTA();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class STSS: public fullBox{
|
|
public:
|
|
STSS();
|
|
void setEntryCount(uint32_t newVal);
|
|
uint32_t getEntryCount();
|
|
void setSampleNumber(uint32_t newVal, uint32_t index);
|
|
uint32_t getSampleNumber(uint32_t index);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class META: public containerFullBox{
|
|
public:
|
|
META();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class ELST: public fullBox{
|
|
public:
|
|
ELST();
|
|
void setSegmentDuration(uint64_t newVal);
|
|
uint64_t getSegmentDuration();
|
|
void setMediaTime(uint64_t newVal);
|
|
uint64_t getMediaTime();
|
|
void setMediaRateInteger(uint16_t newVal);
|
|
uint16_t getMediaRateInteger();
|
|
void setMediaRateFraction(uint16_t newVal);
|
|
uint16_t getMediaRateFraction();
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class UUID: public Box{
|
|
public:
|
|
UUID();
|
|
std::string getUUID();
|
|
void setUUID(const std::string & uuid_string);
|
|
void setUUID(const char * raw_uuid);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
class UUID_TrackFragmentReference: public UUID{
|
|
public:
|
|
UUID_TrackFragmentReference();
|
|
void setVersion(uint32_t newVersion);
|
|
uint32_t getVersion();
|
|
void setFlags(uint32_t newFlags);
|
|
uint32_t getFlags();
|
|
void setFragmentCount(uint32_t newCount);
|
|
uint32_t getFragmentCount();
|
|
void setTime(size_t num, uint64_t newTime);
|
|
uint64_t getTime(size_t num);
|
|
void setDuration(size_t num, uint64_t newDuration);
|
|
uint64_t getDuration(size_t num);
|
|
std::string toPrettyString(uint32_t indent = 0);
|
|
};
|
|
|
|
}
|
|
|