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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const main_cxx_Version =
  51.     "$Id: main.cxx,v 1.6 2000/12/18 23:49:26 bko Exp $";
  52. #include "sdp.hxx"
  53. #include <string>
  54. void
  55. testEncode (SDPDescriptor& sd)
  56. {
  57.     cout << "------ Encode begins ------" << endl;
  58.     // Session Description
  59.     // v=0 by default - no other value as of now
  60.     // o= owner/creator and session identifier
  61.     // s= session name
  62.     // i=* session information
  63.     // u=* URI of description
  64.     // e=* email address
  65.     // p=* phone number
  66.     // c=* connection information (not required if included in all media
  67.     // b=* bandwidth information
  68.     // Time Description
  69.     // t= time the session is active
  70.     // r=* zero or more repeated times
  71.     // z=* time zone adjustment
  72.     // k=* encryption key
  73.     // Verify
  74.     cout << sd.encode();
  75.     // tbd: Return the string and plug it into decode()
  76.     cout << "------- Encode ends -------" << endl;
  77. }    // testEncode
  78. /** This tests out the decoding of the SDP message, copy C'tor, and
  79. = operator for the SDP class */
  80. void
  81. testDecode(SDPDescriptor& sdpDesc)
  82. {
  83.     //form a SDP string, and call decode, , and call writeDetails to check if the values have been assigned properly.
  84.     string sdp;
  85.     sdp.erase();
  86.     sdp = "v=0n";
  87.     sdp += "o=mhandley 28908 23456 IN IP4 126.16.64.4n";
  88.     sdp += "s=SDP seminarn";
  89.     sdp += "i=informationn";
  90.     sdp += "c=IN IP4 224.2.17.12/127n";
  91.     sdp += "a=recvonlyn";
  92.     sdp += "m=audio 49230 RTP/AVP 96 97 98n";
  93.     sdp += "a=rtpmap:96 L8/8000n";
  94.     sdp += "a=rtpmap:97 L16/8000n";
  95.     sdp += "a=rtpmap:98 X-myrtpmap/8000n";
  96.     sdp += "c=IN IP4 128.2.124.5n";
  97.     sdp += "m=video 51372 RTP/AVP 31n";
  98.     sdp += "a=orient:portraitn";
  99.     sdp += "a=X-myAttrib:myValuen";
  100.     sdp += "a=ptime:100n";
  101.     sdp += "b=AS:64n";
  102.     sdpDesc.decode(sdp);
  103.     cout << sdpDesc;
  104.     cout << "Testing the copy operator";
  105.     SDPDescriptor sdpDest;
  106.     sdpDest = sdpDesc;
  107.     cout << sdpDest;
  108.     //test copy constructor.
  109.     SDPDescriptor sdpCopyCtor(sdpDest);
  110.     cout << sdpCopyCtor;
  111.     cout << "Test Decode done" << endl;
  112. }
  113. void
  114. main()
  115. {
  116.     cpLogSetPriority(LOG_DEBUG);
  117.     SDPDescriptor sd;
  118.     testDecode (sd);
  119.     testEncode (sd);
  120. }