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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef RTPPACKET_HXX
  2. #define RTPPACKET_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 RtpPacket_hxx_Version =
  53.     "$Id: RtpPacket.hxx,v 1.9 2001/03/21 21:14:56 kimle Exp $";
  54. #include "rtpTypes.h"
  55. #include  <assert.h>
  56. /// Data struture for RTP data packet
  57. class RtpPacket
  58. {
  59.     public:
  60.         /** Constructor that allocates RTP packetData
  61.             @param newpayloadSize Payload size not including RTP header 
  62.             @param npadSize Number of pad bytes (not implemented)
  63.             @param csrc_count Number of contributing sources in packet
  64.          **/
  65.         RtpPacket (int newpayloadSize, int npadSize = 0, int csrc_count = 0);
  66.         /** Constructor that uses already allocated memory as packetData
  67.             @param memory already allocatd memory
  68.             @param size includes rtpHeader and padbytes
  69.         **/
  70.         //RtpPacket (char* memory, int size);
  71.         /// clones an existing packet to a new size
  72.         RtpPacket (RtpPacket* clonePacket, int newpayloadSize);
  73.         /// Destructor that deallocates RTP packetData memory
  74.         ~RtpPacket ();
  75.         /// Pointer to packet data
  76.         char* getPacketData ()
  77.         {
  78.             return packetData;
  79.         }
  80.         /// Pointer to packet header
  81.         RtpHeader* getHeader ()
  82.         {
  83.             return header;
  84.         }
  85.         /// Pointer to beginning of payload
  86.         char* getPayloadLoc ();
  87.         /// Maximum payload size
  88.         int getPayloadSize ();
  89.         /** Sets payload usage
  90.             @param size doesn't include RTP header
  91.          **/
  92.         void setPayloadUsage (int size);
  93.         /// Size of payload stored
  94.         int getPayloadUsage ();
  95.         /// Pointer to begnning of padbyte (Not implemented)
  96.         char* getPadbyteLoc ();
  97.         /// Sets size of payload (Not implemented)
  98.         void setPadbyteSize (int size);
  99.         /// Size of padbyte (Not fully implemented)
  100.         int getPadbyteSize ();
  101.         /// Entire size of RTP packet including header, unused, and padbyte
  102.         int getPacketAlloc ()
  103.         {
  104.             return packetAlloc;
  105.         }
  106.         /// Size of unused memory
  107.         int getUnused ()
  108.         {
  109.             return unusedSize;
  110.         }
  111.         /** Sets size of RTP packet including header and padbyte
  112.             Extra memory will be set as unused memory
  113.          **/
  114.         void setTotalUsage (int size)
  115.         {
  116.             assert (size <= packetAlloc);
  117.             unusedSize = packetAlloc - size;
  118.         }
  119.         /// Size of RTP packet not including unused memory
  120.         int getTotalUsage ()
  121.         {
  122.             return packetAlloc - unusedSize;
  123.         }
  124.         ///
  125.         void setPayloadType (RtpPayloadType payloadType);
  126.         ///
  127.         RtpPayloadType getPayloadType ();
  128.         ///
  129.         void setSequence (RtpSeqNumber newseq);
  130.         ///
  131.         RtpSeqNumber getSequence ();
  132.         ///
  133.         RtpTime getRtpTime();
  134.         ///
  135.         void setRtpTime (RtpTime time);
  136.         ///
  137.         void setSSRC (RtpSrc src);
  138.         ///
  139.         RtpSrc getSSRC ();
  140.         /// Gets number of contributing sources
  141.         void setCSRCcount (int i);   // use with cuation
  142.         int getCSRCcount ();
  143.         ///
  144.         void setCSRC (RtpSrc src, unsigned int index);
  145.         /** index value less range 1 to csrc_count
  146.             @param index value less range 1 to csrc_count
  147.          **/
  148.         RtpSrc getCSRC (unsigned int index);
  149.         ///
  150.         void setVersion (int i)
  151.         {
  152.             header->version = i;
  153.         }
  154.         int getVersion ()
  155.         {
  156.             return header->version;
  157.         }
  158.         ///
  159.         void setPaddingFlag (int i)
  160.         {
  161.             header->padding = i;
  162.         }
  163.         int getPaddingFlag ()
  164.         {
  165.             return header->padding;
  166.         }
  167.         ///
  168.         void setExtFlag (int i)
  169.         {
  170.             header->extension = i;
  171.         }
  172.         int getExtFlag ()
  173.         {
  174.             return header->extension;
  175.         }
  176.         ///
  177.         void setMarkerFlag (int i)
  178.         {
  179.             header->marker = i;
  180.         }
  181.         int getMarkerFlag ()
  182.         {
  183.             return header->marker;
  184.         }
  185.         /// flags
  186.         bool sequenceSet;
  187.         bool timestampSet;
  188.         /// valid check
  189.         bool isValid();
  190.         /// Print packet contents
  191.         void printPacket ();
  192.     private:
  193.         /// Pointer to raw memory allocation
  194.         char* packetData;
  195.         /// Allocated packet size
  196.         int packetAlloc;
  197.         /// Size of unused memory
  198.         int unusedSize;
  199.         /// Easy access to header information
  200.         RtpHeader* header;
  201. };
  202. #endif // RTPPACKET_HXX