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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #ifndef _SDPMEDIA_H
  2. #define _SDPMEDIA_H
  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 SdpMediaVersion =
  53.     "$Id: SdpMedia.hxx,v 1.22 2001/06/15 00:28:46 chok Exp $";
  54. #include <vector>
  55. #include <strstream>
  56. #include <cassert>
  57. #include "SdpExterns.hxx"
  58. #include "SdpConnection.hxx"
  59. #include "SdpBandwidth.hxx"
  60. #include "SdpAttributes.hxx"
  61. #include "SdpEncryptkey.hxx"
  62. #include "cpLog.h"
  63. #include "support.hxx"
  64. ///
  65. enum SdpMediaType
  66. {
  67.     MediaTypeUnknown,
  68.     MediaTypeAudio,
  69.     MediaTypeVideo
  70. };
  71. /** Session Media
  72.   * m=<media> <port> <transport> <fmt list> 
  73.   * 
  74.   * Besides the fields above, this class really holds the media block,
  75.   * i.e. not just the "m=" line but all lines followed until next "m=" line
  76.   */
  77. class SdpMedia
  78. {
  79.     public:
  80.         ///
  81.         SdpMedia();
  82.         ///
  83.         SdpMedia(split_t& mediaDetails);
  84.         ///
  85.         SdpMediaType getMediaType()
  86.         {
  87.             return mediaType;
  88.         }
  89.         ///
  90.         string getMediaTypeString()
  91.         {
  92.             return mediaTypeString;
  93.         }
  94.         ///
  95.         void setMediaType( SdpMediaType newType );
  96.         ///
  97.         void setMediaType( string newType );
  98.         ///
  99.         int getPort()
  100.         {
  101.             return port;
  102.         }
  103.         ///
  104.         void setPort(int newport)
  105.         {
  106.             port = newport;
  107.         }
  108.         ///
  109.         int getNumPorts()
  110.         {
  111.             return numPorts;
  112.         }
  113.         ///
  114.         void setNumPorts(int newnumPorts)
  115.         {
  116.             numPorts = newnumPorts;
  117.         }
  118.         ///
  119.         TransportType getTransportType()
  120.         {
  121.             return transportType;
  122.         }
  123.         ///
  124.         void setTransportType(TransportType newtransport);
  125.         ///
  126.         void addFormat( string fmt )
  127.         {
  128.             formatList.push_back( fmt );
  129.             char format[ MaxFormatIntValue+1 ];
  130.             format[ MaxFormatIntValue ] = '';
  131.             strncpy( format, fmt.c_str(), MaxFormatIntValue );
  132.             char* endPtr = 0;
  133.             int formatInt = 0;
  134.             formatInt = strtol( format, &endPtr, 10 );
  135.             if( endPtr != format )    // Format is an integer
  136.             {
  137.                 formatListInt.push_back( formatInt );
  138.             }
  139.         }
  140.         /// deprecated
  141.         void addFormat(int fmt)
  142.         {
  143.             formatList.push_back( itos( fmt ) );
  144.             formatListInt.push_back( fmt );
  145.         }
  146.         ///
  147.         vector < string > * getStringFormatList()
  148.         {
  149.             if (formatList.size() > 0) return &formatList;
  150.             else return 0;
  151.         }
  152.         /// deprecated
  153.         vector < int > * getFormatList()
  154.         {
  155.             if (formatListInt.size() > 0) return &formatListInt;
  156.             else return 0;
  157.         }
  158.         ///
  159.         void clearFormatList()
  160.         {
  161.             formatList.clear();
  162.             formatListInt.clear();
  163.         }
  164.         ///
  165.         MediaAttributes* getMediaAttributes()
  166.         {
  167.             return mediaAttrib;
  168.         }
  169.         ///
  170.         void setMediaAttributes(MediaAttributes* attributes)
  171.         {
  172.             mediaAttrib = attributes;
  173.         };
  174.         ///
  175.         SdpConnection* getConnection()
  176.         {
  177.             return connection;
  178.         }
  179.         ///
  180.         void setConnection(const SdpConnection& conn) 
  181.         { 
  182.             if (!connection)
  183.             {
  184.                 connection = new SdpConnection;
  185.             }
  186.             *connection = conn;
  187.         }
  188.         ///
  189.         SdpBandwidth* getBandwidth()
  190.         {
  191.             return bandwidth;
  192.         }
  193.         ///
  194.         SdpEncryptkey* getEncryptkey()
  195.         {
  196.             return encryptkey;
  197.         }
  198.         ///
  199.         string getMediaInfo()
  200.         {
  201.             return mediaInfo;
  202.         }
  203.         ///
  204.         void setMediaInfo(const string& info)
  205.         {
  206.             mediaInfo = info;
  207.         }
  208.         ///
  209.         const SdpMedia& operator=(SdpMedia& media);
  210.         ~SdpMedia()
  211.         {
  212.             if (mediaAttrib)
  213.             {
  214.                 delete mediaAttrib;
  215.             }
  216.             if (connection)
  217.             {
  218.                 delete connection;
  219.             }
  220.             if (bandwidth)
  221.             {
  222.                 delete bandwidth;
  223.             }
  224.             if (encryptkey)
  225.             {
  226.                 delete encryptkey;
  227.             }
  228.         }
  229.         ///
  230.         void encode (ostrstream& s);
  231.     private:
  232. /// disable copy constructor
  233. SdpMedia(const SdpMedia&);
  234.         ///
  235.         string transportTypeString();
  236.         ///
  237.         void encodeMediaAnnouncement (ostrstream& s);
  238.         SdpMediaType mediaType;
  239.         string mediaTypeString;
  240.         int port;
  241.         int numPorts;
  242.         TransportType transportType;     // RTP/AVP or UDP
  243.         vector < string > formatList;
  244.         vector < int > formatListInt;    // deprecated
  245.         //maintain the MediaAttribute.
  246.         MediaAttributes* mediaAttrib;
  247.         //maintain the connection address in the c line.
  248.         SdpConnection* connection;
  249.         //maintain the bandwidth
  250.         SdpBandwidth* bandwidth;
  251.         //maintain the encryption key
  252.         SdpEncryptkey* encryptkey;
  253.         //maintain the media information
  254.         string mediaInfo;
  255.         ///
  256.         static const int MaxFormatIntValue = 15;
  257. };
  258. #endif