blob: d33e425f5a5e0b6c4e47f27ba01fd892d0578732 [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 2008 PacketVideo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
* -------------------------------------------------------------------
*/
/*********************************************************************************/
/* ------------------------------------------------------------------- */
/* MPEG-4 ESDAtom Class */
/* ------------------------------------------------------------------- */
/*********************************************************************************/
/*
This ESDAtom Class provides the offset between decoding
time and composition time.
*/
#ifndef ESDATOM_H_INCLUDED
#define ESDATOM_H_INCLUDED
#ifndef OSCL_FILE_IO_H_INCLUDED
#include "oscl_file_io.h"
#endif
#ifndef FULLATOM_H_INCLUDED
#include "fullatom.h"
#endif
#ifndef ESDESCRIPTOR_H_INCLUDED
#include "esdescriptor.h"
#endif
class ESDAtom : public FullAtom
{
public:
ESDAtom(MP4_FF_FILE *fp, uint32 size, uint32 type);
virtual ~ESDAtom();
// Member gets and sets
const ESDescriptor &getESDescriptor() const
{
return *_pdescriptor;
}
const ESDescriptor *getESDescriptorPtr() const
{
return _pdescriptor;
}
uint8 getObjectTypeIndication()
{
if (_pdescriptor != NULL)
{
return _pdescriptor->getObjectTypeIndication();
}
else
{
return 0xFF;
}
}
// Getting and setting the Mpeg4 VOL header
DecoderSpecificInfo *getDecoderSpecificInfo() const
{
if (_pdescriptor != NULL)
{
return _pdescriptor->getDecoderSpecificInfo();
}
else
{
return NULL;
}
}
// Get the max size buffer needed to retrieve the media samples
uint32 getMaxBufferSizeDB() const
{
if (_pdescriptor != NULL)
{
return _pdescriptor->getMaxBufferSizeDB();
}
else
{
return 0;
}
}
uint32 getAverageBitrate() const
{
if (_pdescriptor != NULL)
{
return _pdescriptor->getAverageBitrate();
}
else
{
return 0;
}
}
uint32 getMaxBitrate() const
{
if (_pdescriptor != NULL)
{
return _pdescriptor->getMaxBitrate();
}
else
{
return 0;
}
}
private:
ESDescriptor *_pdescriptor;
};
#endif // ESDATOM_H_INCLUDED