blob: baeafd97e279312d59e9150d0c169ffed985ae18 [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.
* -------------------------------------------------------------------
*/
/* */
/* ===================================================================== */
/* File: m4v_payload_info.h */
/* Description: */
/* */
/* */
/* Rev: */
/* Created: 04/04/06 */
/* ===================================================================== */
/* */
/* Revision History: */
/* */
/* Rev: */
/* Date: */
/* Description: */
/* */
/* /////////////////////////////////////////////////////////////////////// */
#ifndef M4V_PAYLOAD_INFO_H
#define M4V_PAYLOAD_INFO_H
#include "payload_info.h"
#define PVMF_SDP_DEFAULT_MPEG4_VIDEO_SAMPLE_RATE 90000
class M4vPayloadSpecificInfoType : public PayloadSpecificInfoTypeBase
{
public:
M4vPayloadSpecificInfoType(int payload)
{
payloadNumber = payload;
frameWidth = -1;
frameHeight = -1;
};
~M4vPayloadSpecificInfoType()
{};
inline void setVOLHeader(OsclSharedPtr<uint8> HPtr)
{
m4v_VOLHeader = HPtr;
};
inline void setVOLHeaderSize(uint32 size)
{
m4v_VOLHeaderSize = size;
};
inline void setFrameWidth(int fWidth)
{
frameWidth = fWidth;
};
inline void setFrameHeight(int fHeight)
{
frameHeight = fHeight;
};
OsclSharedPtr<uint8> getVOLHeader()
{
return m4v_VOLHeader;
};
int getVOLLength()
{
return m4v_VOLHeaderSize;
};
inline int getFrameWidth()
{
return frameWidth;
}
inline int getFrameHeight()
{
return frameHeight;
}
private:
OsclSharedPtr<uint8> m4v_VOLHeader;
uint32 m4v_VOLHeaderSize;
int frameWidth;
int frameHeight;
};
#endif