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

流媒体/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 sampleUsage_cxx_Version =
  51.     "$Id: sampleUsage.cxx,v 1.23 2001/06/29 21:02:42 bko Exp $";
  52. // --- Authors ---------------------------------------------------- //
  53. // Kim Le, July 1999
  54. // ---------------------------------------------------------------- //
  55. #include <stdlib.h>
  56. #include <unistd.h>
  57. #include <fstream>
  58. #include <stdio.h>
  59. #include "cpLog.h"
  60. #include "rtpTypes.h"
  61. #include "RtpSession.hxx"
  62. #ifdef __vxworks
  63. #include <resolvLib.h>
  64. #include "VThread.hxx"
  65. #endif
  66. int main (int argc, char *argv[])
  67. {
  68. #ifdef __vxworks
  69.     resolvInit("192.168.5.254", "private.vovida.com", 0);
  70. #endif
  71.     // allocate and initialize default configuration values
  72.     // note, you may need to create two executable, each with the
  73.     // others address info
  74.     char rmtHost[256] = "192.168.5.11";
  75.     int rmtPort = 6000;
  76.     int lclPort = 5000;
  77.     int apSize = 100;
  78.     int npSize = 100;
  79. #ifndef __vxworks
  80.     // override default values if not vxworks
  81.     if (argc == 6)
  82.     {
  83.         // Usage:"sampleUsage host rtpTxPort rtpRxPort
  84.         //                    apiPktSize networkPktSize
  85.         strcpy( rmtHost, argv[1] );
  86.         rmtPort = atoi( argv[2] );
  87.         lclPort = atoi( argv[3] );
  88.         apSize = atoi( argv[4] );
  89.         npSize = atoi( argv[5] );
  90.     }
  91.     else
  92.     {
  93.         printf("Enter remote hostname: ");
  94.         scanf ("%s", rmtHost);
  95.         printf("Enter remote port number: ");
  96.         scanf ("%d", &rmtPort);
  97.         printf("Enter local port number: ");
  98.         scanf ("%d", &lclPort);
  99.         printf("API packet size: ");
  100.         scanf ("%d", &apSize);
  101.         printf("Network packet size: ");
  102.         scanf ("%d", &npSize);
  103.     }
  104. #endif
  105.     RtpSession* stack = new RtpSession ( rmtHost, rmtPort, lclPort,
  106.                                          rmtPort + 1, lclPort + 1, rtpPayloadPCMU, rtpPayloadPCMU, 5);
  107.     // setup logfile
  108.     cpLogSetLabel ("sampleUsage");
  109.     //    cpLogSetPriority (LOG_DEBUG);
  110.     RtpPacket* inPacket = NULL;
  111.     RtpPacket* outPacket = stack->createPacket();
  112.     // only 5 bytes of data, but still send a big packet
  113.     strncpy (outPacket->getPayloadLoc(), "data", 5);
  114.     stack->setApiFormat (rtpPayloadPCMU, apSize);
  115.     stack->setNetworkFormat (rtpPayloadPCMU, npSize);
  116.     for (int i = 0; i < 80; i++)
  117.     {
  118.         // receive a packet
  119.         inPacket = stack->receive ();
  120.         if (inPacket)
  121.         {
  122.             //            if (i<2)
  123.             //                inPacket->printPacket();
  124.             printf( "r" );
  125.             delete inPacket;
  126.             inPacket = NULL;
  127.         }
  128.         else
  129.         {
  130.             printf( "n");
  131.         }
  132.         // sleep between rcv and trans
  133.         usleep (100*1000);  // 100 msec
  134.         // send a packet
  135.         outPacket->setRtpTime(stack->getPrevRtpTime() + npSize);
  136.         //        if (i<2)
  137.         //           outPacket->printPacket();
  138.         outPacket->setPayloadUsage (npSize);
  139.         stack->transmit (outPacket);
  140.         printf( "t" );
  141.         // send and receive RTCP packet
  142.         if (stack->checkIntervalRTCP())
  143.         {
  144.             stack->transmitRTCP();
  145.             printf( "T" );
  146.         }
  147.         if (stack->receiveRTCP() == 0 )
  148.         {
  149.             printf( "R" );
  150.         }
  151.         fflush(stdout);
  152.     }
  153.     stack->transmitRTCPBYE();
  154.     if (outPacket)
  155.     {
  156.         delete outPacket;
  157.         outPacket = NULL;
  158.     }
  159.     if (inPacket)
  160.     {
  161.         delete inPacket;
  162.         inPacket = NULL;
  163.     }
  164.     delete stack;
  165.     stack = NULL;
  166.     return 0;
  167. }