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

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 RTPRTCPMODULE_H
  24. #define RTPRTCPMODULE_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpdebug.h"
  28. #include "rtptimeutil.h"
  29. #include "rtpstructs.h"
  30. #include "rtpexceptionstructs.h"
  31. #include "rtperror.h"
  32. class RTPConnection;
  33. class RTPSources;
  34. class RTPContributingSources;
  35. class RTPLocalInfo;
  36. class RTPSourceData;
  37. class RTPSourceDescription;
  38. class RTPHandlers;
  39. class RTPRTCPModule RTPDEBUGBASE
  40. {
  41. public:
  42. RTPRTCPModule();
  43. ~RTPRTCPModule();
  44. inline int SetConnection(RTPConnection *conn);
  45. inline int SetSources(RTPSources *srcs);
  46. inline int SetContributingSources(RTPContributingSources *contrib);
  47. inline int SetLocalInfo(RTPLocalInfo *locinf);
  48. inline int SetHandlers(RTPHandlers *handl);
  49. void Initialize();
  50. void SetSessionBandWidth(double bw) { sessbandwidth = bw; rtcpbandwidth = sessbandwidth*rtcpfrag; CalcNextRTCPTime(); }
  51. void SetControlTrafficFragment(double frag) { rtcpfrag = frag; rtcpbandwidth = sessbandwidth*rtcpfrag; CalcNextRTCPTime(); }
  52. bool RTCPCheck(unsigned long curtime) { if (curtime > nextrtcptime) return true; return false; }
  53. int RTCPRoutine(unsigned long curtime);
  54. void SentData() { sentdatasincelastSR = true; }
  55. int SendBYE();
  56. void CalcNextRTCPTime();
  57. private:
  58. int BuildAndSendPackets(bool bye,bool allsdesinfo);
  59. int ProcessReports();
  60. int ProcessSDESInfo(bool allsdesinfo);
  61. int ProcessAPPData();
  62. int ProcessBYEMessage();
  63. inline int SendPacketData();
  64. void GetRRParams(RTPSourceData *src,RTCPReportBlock *rr);
  65. bool sentdatasincelastSR;
  66. double sessbandwidth,rtcpbandwidth;
  67. double rtcpfrag;
  68. double avgrtcpsize;
  69. unsigned long prevrtcptime,nextrtcptime;
  70. unsigned long numrtcpsent,rtcpcount;
  71. bool initialized;
  72. RTPConnection *rtpconn;
  73. RTPSources *sources;
  74. RTPContributingSources *contribsrcs;
  75. RTPLocalInfo *localinf;
  76. RTPHandlers *handlers;
  77. // some values to be used when constructing RTCP packets
  78. int maxpacksize;
  79. int sendcount;
  80. int packetoffset;
  81. // APP struct
  82. RTPExcepAppData ex_appdata;
  83. // packet buffer
  84. unsigned char packetbuffer[RTP_MAXIMUMPACKETSIZE];
  85. };
  86. inline int RTPRTCPModule::SetConnection(RTPConnection *conn)
  87. {
  88. if (conn == NULL)
  89. return ERR_RTP_ARGUMENTCANTBENULL;
  90. rtpconn = conn;
  91. if (sources != NULL && contribsrcs != NULL && localinf != NULL && handlers != NULL)
  92. initialized = true;
  93. return 0;
  94. }
  95. inline int RTPRTCPModule::SetSources(RTPSources *srcs)
  96. {
  97. if (srcs == NULL)
  98. return ERR_RTP_ARGUMENTCANTBENULL;
  99. sources = srcs;
  100. if (rtpconn != NULL && contribsrcs != NULL && localinf != NULL && handlers != NULL)
  101. initialized = true;
  102. return 0;
  103. }
  104. inline int RTPRTCPModule::SetContributingSources(RTPContributingSources *contrib)
  105. {
  106. if (contrib == NULL)
  107. return ERR_RTP_ARGUMENTCANTBENULL;
  108. contribsrcs = contrib;
  109. if (rtpconn != NULL && sources != NULL && localinf != NULL && handlers != NULL)
  110. initialized = true;
  111. return 0;
  112. }
  113. inline int RTPRTCPModule::SetLocalInfo(RTPLocalInfo *locinf)
  114. {
  115. if (locinf == NULL)
  116. return ERR_RTP_ARGUMENTCANTBENULL;
  117. localinf = locinf;
  118. if (rtpconn != NULL && sources != NULL && contribsrcs != NULL && handlers != NULL)
  119. initialized = true;
  120. return 0;
  121. }
  122. inline int RTPRTCPModule::SetHandlers(RTPHandlers *hand)
  123. {
  124. if (hand == NULL)
  125. return ERR_RTP_ARGUMENTCANTBENULL;
  126. handlers = hand;
  127. if (rtpconn != NULL && sources != NULL && contribsrcs != NULL && localinf != NULL)
  128. initialized = true;
  129. return 0;
  130. }
  131. #endif // RTPRTCPMODULE_H