blob: 1c6f08857b9ece98f49dbc6b4aadc9767dfd0689 [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 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.
* -------------------------------------------------------------------
*/
#ifndef AMR_MEDIAINFO_H
#define AMR_MEDIAINFO_H
#include "sdp_memory.h"
#include "media_info.h"
class amr_mediaInfo : public mediaInfo
{
private:
int maximumPTime;
OSCL_HeapString<SDPParserAlloc> lang;
public:
amr_mediaInfo()
{
mediaInfo();
maximumPTime = 0;
lang = NULL;
};
amr_mediaInfo(const amr_mediaInfo &pSource) : mediaInfo(pSource)
{
setMaximumPTime(pSource.maximumPTime);
setLang(pSource.lang);
}
~amr_mediaInfo() {};
inline bool setMaximumPTime(int mPTime)
{
maximumPTime = mPTime;
return true;
};
inline void setLang(char* lan)
{
lang = lan;
};
inline void setLang(const OSCL_HeapString<SDPParserAlloc>& lan)
{
lang = lan;
};
inline void setLang(const OsclMemoryFragment memFrag)
{
lang.set((const char*)(memFrag.ptr), memFrag.len);
};
inline const char *getLang()
{
return lang.get_cstr();
};
inline int getMaximumPTime()
{
return maximumPTime;
}
};
#endif