maxRecordingNF.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. // This is a test to see how many rtp session can be established 
  51. // between two linux boxes. It is based on sampleUsage.cxx
  52. static const char* const maxRecordingNF_cxx_Version =
  53.     "$Id: maxRecordingNF.cxx,v 1.3 2001/02/27 00:55:27 larryt Exp $";
  54. #include <stdlib.h>
  55. #include <unistd.h>
  56. #include <fstream>
  57. #include <stdio.h>
  58. #include "rtpTypes.h"
  59. #include "RtpSession.hxx"
  60. #include "TimeTracker.hxx"
  61. // try no forking 
  62. int main (int argc, char *argv[])
  63. {
  64.     // allocate and initialize default configuration values
  65.     // note, you may need to create two executable, each with the
  66.     // others address info
  67.     char rmtHost[256] = "vvs-tennis";
  68.     int max_sessions = 100;
  69.     int rmtPort = 7000;
  70.     int lclPort = 5000;
  71.     int apSize = 160;
  72.     int npSize = 160;
  73.     int numPkts = 10000;
  74.     TimeTracker T(cerr);
  75.     if (argc == 1)
  76.     {
  77.         cout << "Usage: ./maxRtpSessions host sessions rmt_start_port lcl_start_port num_packets" << endl;
  78.         return 0;
  79.     } 
  80.     else if (argc == 6)
  81.     {
  82.         strcpy( rmtHost, argv[1] );
  83.         max_sessions = atoi( argv[2] );
  84.         rmtPort = atoi( argv[3] );
  85.         lclPort = atoi( argv[4] );
  86.         numPkts = atoi( argv[5] );
  87.     }
  88.     else
  89.     {
  90.         printf("Enter remote hostname: ");
  91.         scanf ("%s", rmtHost);
  92.         printf("Enter number of the max rtp sessions: ");
  93.         scanf ("%d", &max_sessions);
  94.         printf("Enter remote port number: ");
  95.         scanf ("%d", &rmtPort);
  96.         printf("Enter local port number: ");
  97.         scanf ("%d", &lclPort);
  98.         printf("Enter number of packets sending or receiving: ");
  99.         scanf ("%d", &numPkts);
  100.     }
  101. //    pid_t pid;
  102.     int j = 0;
  103. /*
  104.     for (int j=0; j < max_sessions; j++)
  105.     {
  106.         if ((pid = fork()) < 0)
  107.         {
  108.             cerr << "Fork failed." << endl;
  109.             return -1;
  110.         }
  111.         else if (pid == 0)
  112.         {
  113. */
  114.             cout << "Get pid is: " << getpid() <<endl;
  115.             cout << "Creating rtp session " << j << endl;
  116.             RtpSession* stack = new RtpSession ( rmtHost, 
  117.                                      rmtPort + 2*j, lclPort + 2*j,
  118.                                      rmtPort + 2*j + 1, lclPort + 2*j + 1, 
  119.                                      rtpPayloadPCMU, rtpPayloadPCMU, 5);
  120.             RtpPacket* inPacket = NULL;
  121.         
  122.             stack->setApiFormat (rtpPayloadPCMU, apSize);
  123.             stack->setNetworkFormat (rtpPayloadPCMU, npSize);
  124.         
  125.             int i = 0;
  126.             while (i < (numPkts - 3)) // assumming allowing 5 packets lost
  127.             {
  128.                 // receive a packet
  129.                 inPacket = stack->receive ();
  130.                 if (inPacket)
  131.                 {
  132.                     if (i == 0) T.startTime();
  133.                     i++;
  134. //                    cerr << "get packets: " << i << endl;
  135.                     delete inPacket;
  136.                     inPacket = NULL;
  137.                 }
  138.                 else
  139.                 {
  140.                 }
  141.         
  142.                 // send and receive RTCP packet
  143.                 if (stack->checkIntervalRTCP())
  144.                 {
  145.                     stack->transmitRTCP();
  146.                 }
  147.                 if (stack->receiveRTCP() == 0 )
  148.                 {
  149.                 }
  150.              
  151.                 usleep(10*1000);
  152.             }
  153.         
  154.             stack->transmitRTCPBYE();
  155.         
  156.             if (inPacket)
  157.             {
  158.                 delete inPacket;
  159.                 inPacket = NULL;
  160.             }
  161.             delete stack;
  162.             stack = NULL;
  163.             T.endTime();
  164.             cout << "End rtp session " << j << endl;
  165. //            return 3;
  166. //            break;
  167. /*
  168.         }
  169.     }
  170. */
  171.     return 0;
  172. }