2017-01-27 03:27:02 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2013-2017 SRS(ossrs)
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SRS_KERNEL_MP4_HPP
|
|
|
|
#define SRS_KERNEL_MP4_HPP
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <srs_kernel_mp4.hpp>
|
|
|
|
*/
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
2017-01-27 12:54:05 +00:00
|
|
|
/**
|
|
|
|
* 4.2 Object Structure
|
|
|
|
* ISO_IEC_14496-12-base-format-2012.pdf, page 16
|
|
|
|
*/
|
|
|
|
class SrsMp4Box
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// if size is 1 then the actual size is in the field largesize;
|
|
|
|
// if size is 0, then this box is the last one in the file, and its contents
|
|
|
|
// extend to the end of the file (normally only used for a Media Data Box)
|
|
|
|
uint32_t size;
|
|
|
|
uint32_t type;
|
|
|
|
public:
|
|
|
|
SrsMp4Box(uint32_t bt);
|
|
|
|
virtual ~SrsMp4Box();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 4.2 Object Structure
|
|
|
|
* ISO_IEC_14496-12-base-format-2012.pdf, page 16
|
|
|
|
*/
|
|
|
|
class SrsMp4FullBox : public SrsMp4Box
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// an integer that specifies the version of this format of the box.
|
|
|
|
uint8_t version;
|
|
|
|
// a map of flags
|
|
|
|
uint32_t flags;
|
|
|
|
public:
|
|
|
|
SrsMp4FullBox(uint32_t bt, uint8_t v, uint32_t f);
|
|
|
|
virtual ~SrsMp4FullBox();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-01-27 03:27:02 +00:00
|
|
|
#endif
|
|
|
|
|