rtpstructs.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 RTPSTRUCTS_H
  24. #define RTPSTRUCTS_H
  25. #include "rtpconfig.h"
  26. #define TYPE_RTCP_SR 200
  27. #define TYPE_RTCP_RR 201
  28. #define TYPE_RTCP_SDES 202
  29. #define TYPE_RTCP_BYE 203
  30. #define TYPE_RTCP_APP 204
  31. #define TYPE_SDES_END 0
  32. #define TYPE_SDES_CNAME 1
  33. #define TYPE_SDES_NAME 2
  34. #define TYPE_SDES_EMAIL 3
  35. #define TYPE_SDES_PHONE 4
  36. #define TYPE_SDES_LOC 5
  37. #define TYPE_SDES_TOOL 6
  38. #define TYPE_SDES_NOTE 7
  39. #define TYPE_SDES_PRIV 8
  40. typedef unsigned short RTPuint16;
  41. typedef unsigned long RTPuint32;
  42. struct RTPHeader
  43. {
  44. #ifdef RTP_BIG_ENDIAN
  45. unsigned char version:2;
  46. unsigned char padding:1;
  47. unsigned char extension:1;
  48. unsigned char cc:4;
  49. unsigned char marker:1;
  50. unsigned char payloadtype:7;
  51. #else // little endian
  52. unsigned char cc:4;
  53. unsigned char extension:1;
  54. unsigned char padding:1;
  55. unsigned char version:2;
  56. unsigned char payloadtype:7;
  57. unsigned char marker:1;
  58. #endif
  59. RTPuint16 seqnum;
  60. RTPuint32 timestamp;
  61. RTPuint32 ssrc;
  62. };
  63. struct RTPHeaderExtension
  64. {
  65. RTPuint16 userdefined;
  66. RTPuint16 length;
  67. };
  68. struct RTCPHeader
  69. {
  70. #ifdef RTP_BIG_ENDIAN
  71. unsigned char version:2;
  72. unsigned char padding:1;
  73. unsigned char blockcount:5;
  74. #else // little endian
  75. unsigned char blockcount:5;
  76. unsigned char padding:1;
  77. unsigned char version:2;
  78. #endif
  79. unsigned char packettype;
  80. RTPuint16 length;
  81. };
  82. struct SSRCPrefix
  83. {
  84. RTPuint32 ssrc;
  85. };
  86. struct RTCPSenderInfo
  87. {
  88. RTPuint32 NTPmsw;
  89. RTPuint32 NTPlsw;
  90. RTPuint32 rtptimestamp;
  91. RTPuint32 senderpacketcount;
  92. RTPuint32 senderoctetcount;
  93. };
  94. struct RTCPReportBlock
  95. {
  96. RTPuint32 ssrc;
  97. unsigned char fractionlost;
  98. unsigned char packetslost[3];
  99. RTPuint32 exthsnr; // extended highest sequence number received
  100. RTPuint32 jitter;
  101. RTPuint32 lsr; // last SR timestamp
  102. RTPuint32 dlsr; // delay since last SR
  103. };
  104. struct SDESPrefix
  105. {
  106. unsigned char sdestype;
  107. unsigned char length;
  108. };
  109. struct RTCPAPPPrefix
  110. {
  111. RTPuint32 src;
  112. unsigned char name[4];
  113. };
  114. #endif // RTPSTRUCTS_H