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

流媒体/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 tpTrunk_cxx_Version =
  51.     "$Id: tpTrunk.cxx,v 1.5 2000/12/18 23:44:52 bko Exp $";
  52. // --- Authors ---------------------------------------------------- //
  53. // Kim Le, July 1999
  54. // ---------------------------------------------------------------- //
  55. #include <stdlib.h>
  56. #include <stdio.h>
  57. #include <unistd.h>
  58. #include <fstream>
  59. #include <iostream>
  60. #include <sys/socket.h>
  61. #include <sys/ioctl.h>
  62. #include <sys/time.h>
  63. #include <sys/types.h>
  64. #include <fcntl.h>
  65. #include <netinet/in.h>
  66. #include <arpa/inet.h>
  67. #include <netdb.h>
  68. #include <unistd.h>
  69. #include <errno.h>
  70. #include <syslog.h>
  71. #include "rtpTypes.h"
  72. #include "RtpSession.hxx"
  73. #include "ixjuser.h"
  74. #define ULAW_PAYLOAD 240
  75. int main (int argc, char *argv[])
  76. {
  77.     RtpPayloadType payloadType = rtpPayloadPCMU;
  78.     const int residRate = 240;
  79.     const int trunkRate = 160;
  80.     if (argc != 4)
  81.     {
  82.         cerr << "Usage: tpTrunk host rtp_tran_port rtp_recv_portn";
  83.         return 1;
  84.     }
  85.     // open quicknet card
  86.     // char* szDevice = "/dev/ixj0";
  87.     char* szDevice = "/dev/phone0";
  88.     printf("Opening Phone Jack (%s)n", szDevice);
  89.     int ixj = open(szDevice, O_RDWR);
  90.     if (ixj < 0)
  91.     {
  92.         perror("Error opening voice card");
  93.         return -1;
  94.     }
  95.     // open RTP stack
  96.     RtpSession audioStack (argv[1], atoi(argv[2]), atoi(argv[3]),
  97.                            atoi(argv[2]) + 1, atoi(argv[3]) + 1,
  98.                            payloadType, -1);
  99.     RtpPacket* outPacket = audioStack.createPacket (160);
  100.     RtpPacket* inPacket = NULL;
  101.     char* inBuffer = new char [480];
  102.     int inPos = 0;
  103.     int playPos = 0;
  104.     char* outBuffer = new char [480];
  105.     int outPos = 0;
  106.     int recPos = 0;
  107.     // setup file descriptor
  108.     fd_set fileDescriptor;
  109.     int selMax = ixj;
  110.     ++selMax;
  111.     struct timeval timeout;
  112.     int selret = 0;
  113.     // open audio path
  114.     ioctl(ixj, IXJCTL_PLAY_CODEC, ULAW);
  115.     ioctl(ixj, IXJCTL_REC_CODEC, ULAW);
  116.     ioctl(ixj, IXJCTL_REC_START);
  117.     ioctl(ixj, IXJCTL_PLAY_START);
  118.     ioctl(ixj, IXJCTL_AEC_START);
  119.     // continue audio path
  120.     cerr << "Starting audion";
  121.     while (ioctl(ixj, IXJCTL_HOOKSTATE))
  122.     {
  123.         // set up file descriptor
  124.         FD_ZERO (&fileDescriptor);
  125.         FD_SET (ixj, &fileDescriptor);
  126.         timeout.tv_sec = 0;
  127.         timeout.tv_usec = 0;
  128.         // read packet into inBuffer
  129.         inPacket = audioStack.receive();
  130.         if (inPacket)
  131.         {
  132.             if (inPacket->getPayloadUsage() != trunkRate)
  133.                 cerr << "Trunk read err " << inPacket->getPayloadUsage()
  134.                 << "instead of " << trunkRate << endl;
  135.             else
  136.             {
  137.                 //cerr <<"Reading from net "<<inPos<<endl;  // debug
  138.                 memcpy (inBuffer + inPos, inPacket->getPayloadLoc(),
  139.                         inPacket->getPayloadUsage());
  140.                 inPos += inPacket->getPayloadUsage();
  141.             }
  142.         }
  143.         // play packet from inBuffer
  144.         if (inPos >= playPos + residRate)
  145.         {
  146.             //cerr <<"Writing to ixj "<<playPos<<endl;  // debug
  147.             write (ixj, inBuffer + playPos, residRate);
  148.             playPos += residRate;
  149.         }
  150.         // resync positions
  151.         if (inPos == playPos)
  152.         {
  153.             inPos = 0;
  154.             playPos = 0;
  155.         }
  156.         // read packet into outBuffer
  157.         selret = select (selMax, &fileDescriptor, NULL, NULL, &timeout);
  158.         if (selret <= 0)
  159.         {
  160.             // check if select error
  161.             if (selret < 0) perror ("select error");
  162.         }
  163.         else if (FD_ISSET(ixj, &fileDescriptor) && outPos < 480)
  164.         {
  165.             //cerr <<"Reading from ixj "<<outPos<<endl;  // debug
  166.             int cc = read (ixj, outBuffer + outPos, residRate);
  167.             if (cc != residRate)
  168.                 cerr << "IXJ read err " << cc << " instead of " << residRate;
  169.             else
  170.                 outPos += residRate;
  171.         }
  172.         // send packet from outBuffer
  173.         if (outPos >= recPos + trunkRate)
  174.         {
  175.             //cerr <<"Sending to net "<<recPos<<endl;  // debug
  176.             memcpy (outPacket->getPayloadLoc(), outBuffer + recPos,
  177.                     trunkRate);
  178.             outPacket->setPayloadUsage (trunkRate);
  179.             outPacket->setRtpTime (audioStack.getPrevRtpTime() +
  180.                                    trunkRate);
  181.             audioStack.transmit (outPacket);
  182.             recPos += trunkRate;
  183.         }
  184.         // resync positions
  185.         if (outPos == recPos)
  186.         {
  187.             outPos = 0;
  188.             recPos = 0;
  189.         }
  190.     }
  191.     audioStack.transmitRTCPBYE();
  192.     ioctl(ixj, IXJCTL_REC_STOP);
  193.     ioctl(ixj, IXJCTL_PLAY_STOP);
  194.     ioctl(ixj, IXJCTL_AEC_STOP);
  195.     close(ixj);
  196.     return 0;
  197. }