jrtplib 3.7.1
|
00001 /* 00002 00003 This file is a part of JRTPLIB 00004 Copyright (c) 1999-2007 Jori Liesenborgs 00005 00006 Contact: jori.liesenborgs@gmail.com 00007 00008 This library was developed at the "Expertisecentrum Digitale Media" 00009 (http://www.edm.uhasselt.be), a research center of the Hasselt University 00010 (http://www.uhasselt.be). The library is based upon work done for 00011 my thesis at the School for Knowledge Technology (Belgium/The Netherlands). 00012 00013 Permission is hereby granted, free of charge, to any person obtaining a 00014 copy of this software and associated documentation files (the "Software"), 00015 to deal in the Software without restriction, including without limitation 00016 the rights to use, copy, modify, merge, publish, distribute, sublicense, 00017 and/or sell copies of the Software, and to permit persons to whom the 00018 Software is furnished to do so, subject to the following conditions: 00019 00020 The above copyright notice and this permission notice shall be included 00021 in all copies or substantial portions of the Software. 00022 00023 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00024 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00025 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 00026 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 00027 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 00028 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 00029 IN THE SOFTWARE. 00030 00031 */ 00032 00037 #ifndef RTPRAWPACKET_H 00038 00039 #define RTPRAWPACKET_H 00040 00041 #include "rtpconfig.h" 00042 #include "rtptimeutilities.h" 00043 #include "rtpaddress.h" 00044 #include "rtptypes.h" 00045 #include "rtpmemoryobject.h" 00046 00048 class RTPRawPacket : public RTPMemoryObject 00049 { 00050 public: 00058 RTPRawPacket(uint8_t *data,size_t datalen,RTPAddress *address,RTPTime &recvtime,bool rtp,RTPMemoryManager *mgr = 0); 00059 ~RTPRawPacket(); 00060 00062 uint8_t *GetData() { return packetdata; } 00063 00065 size_t GetDataLength() const { return packetdatalength; } 00066 00068 RTPTime GetReceiveTime() const { return receivetime; } 00069 00071 const RTPAddress *GetSenderAddress() const { return senderaddress; } 00072 00074 bool IsRTP() const { return isrtp; } 00075 00083 void ZeroData() { packetdata = 0; packetdatalength = 0; } 00084 private: 00085 uint8_t *packetdata; 00086 size_t packetdatalength; 00087 RTPTime receivetime; 00088 RTPAddress *senderaddress; 00089 bool isrtp; 00090 }; 00091 00092 inline RTPRawPacket::RTPRawPacket(uint8_t *data,size_t datalen,RTPAddress *address,RTPTime &recvtime,bool rtp,RTPMemoryManager *mgr):RTPMemoryObject(mgr),receivetime(recvtime) 00093 { 00094 packetdata = data; 00095 packetdatalength = datalen; 00096 senderaddress = address; 00097 isrtp = rtp; 00098 } 00099 00100 inline RTPRawPacket::~RTPRawPacket() 00101 { 00102 if (packetdata) 00103 RTPDeleteByteArray(packetdata,GetMemoryManager()); 00104 if (senderaddress) 00105 RTPDelete(senderaddress,GetMemoryManager()); 00106 } 00107 00108 #endif // RTPRAWPACKET_H 00109