rtplocalinfo.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 RTPLOCALINFO_H
  24. #define RTPLOCALINFO_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtprandom.h"
  28. #include "rtpstructs.h"
  29. #include "rtptimeutil.h"
  30. class RTPLocalInfo
  31. {
  32. public:
  33. RTPLocalInfo();
  34. ~RTPLocalInfo();
  35. void Clear();
  36. inline void CreateSessionParameters(); // generates random timestamp, seqnum
  37. inline void SetDefaultPayloadType(unsigned char pt);
  38. inline void SetDefaultMark(bool m);
  39. inline void SetDefaultTimestampInc(unsigned long inc);
  40. void SetTimestampUnit(double tsu)  { tsunit = tsu; }
  41. int portbase;
  42. int maxpacksize;
  43. RTPuint16 seqnum;
  44. RTPuint32 timestamp,timestampoffset;
  45. RTPuint32 packetcount,octetcount;
  46. struct timeval tsoffsettime;
  47. bool defptset,defmarkset,deftsincset,defvaluesset;
  48. bool defmark;
  49. unsigned char defpayloadtype;
  50. unsigned long deftsinc;
  51. double tsunit;
  52. private:
  53. RTPRandom rand;
  54. };
  55. inline void RTPLocalInfo::CreateSessionParameters()
  56. {
  57. timestamp = rand.RandomUInt32();
  58. timestampoffset = timestamp;
  59. seqnum = rand.RandomUInt16();
  60. gettimeofday(&tsoffsettime,NULL);
  61. }
  62. inline void RTPLocalInfo::SetDefaultPayloadType(unsigned char pt)
  63. {
  64. defpayloadtype = pt;
  65. defptset = true;
  66. if (defmarkset && deftsincset)
  67. defvaluesset = true;
  68. }
  69. inline void RTPLocalInfo::SetDefaultMark(bool m)
  70. {
  71. defmark = m;
  72. defmarkset = true;
  73. if (defptset && deftsincset)
  74. defvaluesset = true;
  75. }
  76. inline void RTPLocalInfo::SetDefaultTimestampInc(unsigned long inc)
  77. {
  78. deftsinc = inc;
  79. deftsincset = true;
  80. if (defptset && defmarkset)
  81. defvaluesset = true;
  82. }
  83. #endif // RTPLOCALINFO_H