rtppacket.h
上传用户:sztlpcb
上传日期:2007-06-09
资源大小:741k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.   This file is a part of JRTPLIB
  3.   Copyright (c) 1999-2000 Jori Liesenborgs
  4.   Contact: jori@lumumba.luc.ac.be
  5.   This library (JRTPLIB) was partially developed for my thesis at the
  6.   School for Knowledge Technology (Belgium/The Netherlands)
  7.   Permission is hereby granted, free of charge, to any person obtaining a
  8.   copy of this software and associated documentation files (the "Software"),
  9.   to deal in the Software without restriction, including without limitation
  10.   the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.   and/or sell copies of the Software, and to permit persons to whom the
  12.   Software is furnished to do so, subject to the following conditions:
  13.   The above copyright notice and this permission notice shall be included
  14.   in all copies or substantial portions of the Software.
  15.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  16.   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17.   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  18.   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19.   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20.   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21.   IN THE SOFTWARE.
  22. */
  23. #ifndef RTPPACKET_H
  24. #define RTPPACKET_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpdebug.h"
  28. #include "rtpstructs.h"
  29. class RTPPacket RTPDEBUGBASE
  30. {
  31. public:
  32. RTPPacket(RTPHeader *rtphdr,unsigned char *rawdat,unsigned char *payloadptr,int paylden);
  33. ~RTPPacket();
  34. unsigned long GetSSRC()  { return syncsource; }
  35. unsigned long GetExtendedSequenceNumber()  { return extendedseqnum; }
  36. unsigned long GetTimeStamp()  { return timestamp; }
  37. int GetPayloadLength()  { return payloadlen; }
  38. unsigned char *GetRawPacket()  { return rawdata; }
  39. unsigned char *GetPayload()  { return payloaddata; }
  40. unsigned char GetPayloadType() { return payloadtype; }
  41. bool IsMarked() { return marked; }
  42. int GetNumberOfCSRCs() { return numcontribsources; }
  43. inline unsigned long GetCSRC(int pos);
  44. bool HasHeaderExtension() { return hashdrext; }
  45. unsigned short GetHeaderExtensionID() { return hdrextensionID; }
  46. int GetHeaderExtensionLength() { return hdrextlen; }
  47. unsigned char *GetHeaderExtensionData() { return hdrextdata; }
  48. private:
  49. RTPuint16 seqnum;
  50. RTPuint32 extendedseqnum;
  51. RTPuint32 timestamp;
  52. RTPuint32 syncsource;
  53. RTPuint32 contribsources[15];
  54. int numcontribsources;
  55. bool marked;
  56. bool hashdrext;
  57. RTPuint16 hdrextensionID;
  58. int hdrextlen;
  59. unsigned char *hdrextdata;
  60. int payloadlen;
  61. unsigned char *rawdata;
  62. unsigned char *payloaddata; // payload data is a pointer into the rawdata block
  63. unsigned char payloadtype;
  64. RTPPacket *prev,*next;
  65. friend class RTPSourceData;
  66. friend class RTPSourceStats;
  67. friend class RTPSources;
  68. };
  69. inline unsigned long RTPPacket::GetCSRC(int pos)
  70. {
  71. if (pos < 0 || pos >= numcontribsources)
  72. return 0;
  73. return contribsources[pos];
  74. }
  75. #endif // RTPPACKET_H