blob: ef0d1dd2b374dd026f857319680d00578a4b291c [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.
* -------------------------------------------------------------------
*/
/*********************************************************************************/
/*
This PVA_FF_MediaInformationHeaderAtom Class is an abstract base class for the
atoms VideoMediaHeaderAton, AudioMediaHeaderAtom, PVA_FF_HintMediaHeaderAtom,
and PVA_FF_Mpeg4MediaHeaderAtom. This class onbly contains one pure virtual method
getMediaHeaderType() that will return what type of mediaInformationHeader
this atom is.
*/
#ifndef __MediaInformationAtomHeader_H__
#define __MediaInformationAtomHeader_H__
#include "fullatom.h"
class PVA_FF_MediaInformationHeaderAtom : public PVA_FF_FullAtom
{
public:
PVA_FF_MediaInformationHeaderAtom(uint32 atomType, uint8 version, uint32 flags); // Constructor
virtual ~PVA_FF_MediaInformationHeaderAtom();
// Method to get the header type
virtual uint32 getMediaInformationHeaderType() const = 0;
};
#endif