RtcpReceiver.hxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef RTCPRECEIVER_HXX
  2. #define RTCPRECEIVER_HXX
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const RtcpReceiver_hxx_Version =
  53.     "$Id: RtcpReceiver.hxx,v 1.10 2001/02/27 00:55:25 larryt Exp $";
  54. #include "Rtcp.hxx"
  55. #include <sys/types.h>
  56. #include <map>
  57. #include "UdpStack.hxx"
  58. #include "rtpTypes.h"
  59. #include "NetworkAddress.h"
  60. ///Class to transmit RTCP packets
  61. class RtcpReceiver
  62. {
  63.     public:
  64.         /** Constructor creating incoming RTCP stack using port ranges
  65.             @param port associated port
  66.          **/
  67.         RtcpReceiver (int localMinPort, int localMaxPort);
  68.         /** Constructor creating incoming RTCP stack using specified port
  69.             @param port associated port
  70.          **/
  71.         RtcpReceiver (int localPort);
  72.         /** Constructor, using udp stack ptr **/
  73.         RtcpReceiver (UdpStack * udp);
  74.         /// consturctor init (don't call this function)
  75.         void constructRtcpReceiver ();
  76.         ///
  77.         ~RtcpReceiver ();
  78.         /** Receives an incoming RTCP packet
  79.          *  @return: NULL no data recprocess
  80.          **/
  81.         RtcpPacket* getPacket ();
  82.         /** Checks if an RTCP packet is valid
  83.          *  @return 0 not valid, 1 valid
  84.          **/
  85.         int isValid (RtcpPacket* packet);
  86.         /// reads compound RtcpPacket and calls apporiate read function
  87.         int readRTCP (RtcpPacket* packet);
  88.         /** searches inside packet for given type.
  89.             @return NULL means type not found, else ptr to first found
  90.          **/
  91.         RtcpHeader* findRTCP (RtcpPacket* packet, RtcpType type);
  92.         /**
  93.          *  These functions will search inside packet for apporiate type
  94.          *  @return -1 if type not found.  Otherwise will call related
  95.          *  function to use packet and return 0.
  96.          **/
  97.         int readSR (RtcpPacket* packet);
  98.         ///
  99.         int readSDES (RtcpPacket* packet);
  100.         ///
  101.         int readBYE (RtcpPacket* packet);
  102.         ///
  103.         int readAPP (RtcpPacket* packet);
  104.         /**
  105.          *  These functions will search inside packet for apporiate type
  106.          * Thses functions will read packet and store packet information.
  107.          * Same result as calling, ie  readSR(findRTCP(p, RtcpTypeSR))
  108.          **/
  109.         void readSR (RtcpHeader* head);
  110.         ///
  111.         void readSDES (RtcpHeader* head);
  112.         ///
  113.         int readBYE (RtcpHeader* head);
  114.         ///
  115.         void readAPP (RtcpHeader* head);
  116.         ///
  117.         void printSR (RtcpSender* p);
  118.         ///
  119.         void printRR (RtcpReport* p);
  120.         ///
  121.         void addSDESItem (RtpSrc src, RtcpSDESItem* item);
  122.         /// Adds receiver to source listing
  123.         RtpTranInfo* addTranInfo (RtpSrc src, RtpReceiver* recv = NULL);
  124.         int addTranFinal (RtpTranInfo* s);
  125.         /** Remove receiver from  source listing
  126.          *  @return 0 sucess, 1 not found
  127.          **/
  128.         int removeTranInfo (RtpSrc src, int flag = 0);
  129.         /** Finds pointer to source structure
  130.          *  Creates source struture if not found
  131.          *  @return pointer to source structure
  132.          **/
  133.         RtpTranInfo* findTranInfo (RtpSrc src);
  134.         /// Access specified souurce infomration
  135.         RtpTranInfo* getTranInfoList (int index);
  136.         /// Number of known sources
  137.         int getTranInfoCount ();
  138.         /// Port this receiver is receiving it signal
  139.         int getPort ();
  140.         /// Socket File Descriptor used for select()
  141.         int getSocketFD ();
  142.         /// get the ptr of my UdpStack
  143.         UdpStack* getUdpStack()
  144.         {
  145.             return myStack;
  146.         }
  147.         /// get the data for latency
  148.         int getAvgOneWayDelay()
  149.         {
  150.             return avgOneWayDelay;
  151.         }
  152.         int getAvgRoundTripDelay()
  153.         {
  154.             return avgRoundTripDelay;
  155.         }
  156.     private:
  157.         /// list of known sources
  158.         map < RtpSrc, RtpTranInfo* > tranInfoList;
  159.         /// my UDP stack
  160.         UdpStack* myStack;
  161.         ///
  162.         bool freeStack;
  163.         ///
  164.         int packetReceived;
  165.         ///
  166.         int accumOneWayDelay;
  167.         int avgOneWayDelay;
  168.         ///
  169.         int accumRoundTripDelay;
  170.         int avgRoundTripDelay;
  171. };
  172. #endif // RTCPRECEIVER_HXX