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

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 RTPSOURCES_H
  24. #define RTPSOURCES_H
  25. #include "rtpconfig.h"
  26. #include "rtpdefines.h"
  27. #include "rtpdebug.h"
  28. #include "rtpstructs.h"
  29. #include "rtpexceptionstructs.h"
  30. #include "rtperror.h"
  31. #include <stdlib.h>
  32. #define RTP_SOURCETABLE_HASHSIZE 1024
  33. class RTPPacket;
  34. class RTPSourceData;
  35. class RTPHandlers;
  36. class RTPContributingSources;
  37. class RTPConnection;
  38. class RTPSources RTPDEBUGBASE
  39. {
  40. public:
  41. RTPSources();
  42. ~RTPSources();
  43. inline int SetHandlers(RTPHandlers *hand);
  44. inline int SetContributingSources(RTPContributingSources *contrib);
  45. inline int SetConnection(RTPConnection *conn);
  46. void Clear();
  47. RTPSourceData *Retrieve(unsigned long src);
  48. int ProcessPacket(RTPPacket *packet,unsigned long ip,int port,double localtsunit);
  49. int ProcessSRInfo(RTPuint32 src,RTPuint32 ntplsw,RTPuint32 ntpmsw,RTPuint32 rtptimestamp,RTPuint32 packetcount,RTPuint32 bytecount,unsigned long ip,int port,double localtsunit);
  50. int ProcessSDESInfo(RTPuint32 src,int sdestype,unsigned char *sdesdata,int len,unsigned long ip,int port,double localtsunit);
  51. int ProcessBYEMessage(RTPuint32 src,unsigned long ip,int port);
  52. int ProcessRRInfo(RTPuint32 src,unsigned char fraclost,long packetslost,RTPuint32 exthighseqnum,RTPuint32 jitter,RTPuint32 lsr,RTPuint32 dlsr,unsigned long ip,int port,double localtsunit);
  53. void CSRCAdded(RTPuint32 csrc);
  54. void CSRCDeleted(RTPuint32 csrc);
  55. void UpdateAllSources();
  56. int GetNumberOfParticipants() { return numsources; }
  57. int GetNumberOfSenders() { return numsenders; }
  58. bool GotoFirstSender();
  59. bool GotoNextSender();
  60. bool GotoFirstSource();
  61. bool GotoNextSource();
  62. bool GotoFirstSourceWithData();
  63. bool GotoNextSourceWithData();
  64. RTPSourceData *GetSourceInfo() { return cursource; }
  65. private:
  66. RTPSourceData *RetrieveOrCreate(unsigned long src,double localtsunit,bool *created);
  67. inline void CallNewSourceHandler(RTPuint32 ssrc);
  68. inline void CallSSRCCollisionHandler(RTPuint32 ssrc,unsigned long ip,bool rtpdata,int port);
  69. inline void CallInvalidSDESTypeHandler(RTPuint32 ssrc,int type,unsigned char *data,int datalen);
  70. inline void CallSSRCDepartureHandler(RTPuint32 ssrc);
  71. inline void CallSSRCTimeoutHandler(RTPuint32 ssrc);
  72. RTPSourceData *sourcetable[RTP_SOURCETABLE_HASHSIZE];
  73. int numsources;
  74. int numsenders;
  75. bool initialized;
  76. RTPHandlers *handlers;
  77. RTPContributingSources *contribsources;
  78. RTPConnection *rtpconn;
  79. // retrieval info
  80. RTPSourceData *cursource;
  81. int curtablepos;
  82. // variables to hold exception info
  83. RTPExcepSSRCCollision ex_ssrccol;
  84. RTPExcepSSRC ex_ssrc;
  85. RTPExcepInvalSDESType ex_invalsdes;
  86. };
  87. inline int RTPSources::SetHandlers(RTPHandlers *hand)
  88. {
  89. if (hand == NULL)
  90. return ERR_RTP_ARGUMENTCANTBENULL;
  91. handlers = hand;
  92. if (contribsources != NULL && rtpconn != NULL)
  93. initialized = true;
  94. return 0;
  95. }
  96. inline int RTPSources::SetContributingSources(RTPContributingSources *contrib)
  97. {
  98. if (contrib == NULL)
  99. return ERR_RTP_ARGUMENTCANTBENULL;
  100. contribsources = contrib;
  101. if (handlers != NULL && rtpconn != NULL)
  102. initialized = true;
  103. return 0;
  104. }
  105. inline int RTPSources::SetConnection(RTPConnection *conn)
  106. {
  107. if (conn == NULL)
  108. return ERR_RTP_ARGUMENTCANTBENULL;
  109. rtpconn = conn;
  110. if (handlers != NULL && contribsources != NULL)
  111. initialized = true;
  112. return 0;
  113. }
  114. #endif // RTPSOURCES_H