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

流媒体/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_org_cxx_Version =
  51.     "$Id: tpTrunk_org.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 "cpLog.h"
  72. #include "rtpTypes.h"
  73. #include "RtpSession.hxx"
  74. #include "ixjuser.h"
  75. #define ULAW_PAYLOAD 240
  76. int main (int argc, char *argv[])
  77. {
  78.     RtpPayloadType payloadType = rtpPayloadPCMU;
  79.     char* buffer = new char [512];
  80.     char* outbuffer = new char [512];
  81.     int cc;
  82.     if (argc != 4)
  83.     {
  84.         cerr << "Usage: tpTrunk host rtp_tran_port rtp_recv_portn";
  85.         return 1;
  86.     }
  87.     // open quicknet card
  88.     // char* szDevice = "/dev/ixj0";
  89.     char* szDevice = "/dev/phone0";
  90.     printf("Opening Phone Jack (%s)n", szDevice);
  91.     int ixj = open(szDevice, O_RDWR);
  92.     if (ixj < 0)
  93.     {
  94.         perror("Error opening voice card");
  95.         return -1;
  96.     }
  97.     // open RTP stack
  98.     RtpSession stack (argv[1], atoi(argv[2]), atoi(argv[3]),
  99.                       atoi(argv[2]) + 1, atoi(argv[3]) + 1,
  100.                       payloadType);
  101.     RtpPacket* rPacket = NULL;
  102.     RtpPacket* sPacket = NULL;
  103.     RtpPacket* tPacket = NULL;
  104.     RtpPacket* outPacket = stack.createPacket(160);
  105.     outPacket->setPayloadUsage (160);
  106.     /*
  107.         // wait for off hook
  108.         int ring = 0;
  109.         int hook = ioctl(ixj, IXJCTL_HOOKSTATE);
  110.         while(hook != 1)
  111.         {
  112.             hook = ioctl(ixj, IXJCTL_HOOKSTATE);
  113.             rPacket = stack.receive ();
  114.             if (rPacket)
  115.             {
  116.                 if (!ring)
  117.                 {
  118.                     cerr <<"Ring phonen";
  119.                     ioctl(ixj, IXJCTL_RING);
  120.                 }
  121.                 ring = 1;
  122.                 printf("Waiting for hookswitchn");
  123.             }
  124.             delete rPacket;
  125.         }
  126.     */
  127.     // open audio path
  128.     ioctl(ixj, IXJCTL_PLAY_CODEC, ULAW);
  129.     ioctl(ixj, IXJCTL_REC_CODEC, ULAW);
  130.     //ioctl(ixj,IXJCTL_FRAME,20);
  131.     ioctl(ixj, IXJCTL_REC_START);
  132.     ioctl(ixj, IXJCTL_PLAY_START);
  133.     ioctl(ixj, IXJCTL_AEC_START);
  134.     // continue audio path
  135.     while (ioctl(ixj, IXJCTL_HOOKSTATE))
  136.     {
  137.         // receive 20ms packet r
  138.         while (1)
  139.         {
  140.             rPacket = stack.receive ();
  141.             if (!rPacket) continue;
  142.             if (rPacket->getPayloadUsage() != 160)
  143.             {
  144.                 delete rPacket;
  145.                 rPacket = NULL;
  146.                 cerr << "R";
  147.                 continue;
  148.             }
  149.             break;
  150.         }
  151.         // read from card first 30ms part
  152.         cc = read(ixj, buffer, 240);
  153.         if (cc != 240) cerr << "M";
  154.         //        else  cerr <<"m";
  155.         // send 20ms packet x
  156.         memcpy (outPacket->getPayloadLoc(), buffer, 160);
  157.         outPacket->setRtpTime(stack.getPrevRtpTime() + 160);
  158.         stack.transmit (outPacket);
  159.         //        cerr <<"x";
  160.         // receive 20ms packet s
  161.         while (1)
  162.         {
  163.             sPacket = stack.receive ();
  164.             if (!sPacket) continue;
  165.             if (sPacket->getPayloadUsage() != 160)
  166.             {
  167.                 delete sPacket;
  168.                 sPacket = NULL;
  169.                 cerr << "S";
  170.                 continue;
  171.             }
  172.             break;
  173.         }
  174.         // write to card first 30ms part
  175.         memcpy (outbuffer, rPacket->getPayloadLoc(), 160);
  176.         memcpy (outbuffer + 160, sPacket->getPayloadLoc(), 160);
  177.         if (rPacket)
  178.         {
  179.             delete rPacket;
  180.             rPacket = NULL;
  181.         }
  182.         if (sPacket)
  183.         {
  184.             delete sPacket;
  185.             sPacket = NULL;
  186.         }
  187.         write (ixj, outbuffer, 240);
  188.         // read from card second 30ms part
  189.         cc = read(ixj, buffer + 240, 240);
  190.         if (cc != 240) cerr << "N";
  191.         //        else  cerr <<"n";
  192.         // send 20ms packet y
  193.         memcpy (outPacket->getPayloadLoc(), buffer + 160, 160);
  194.         outPacket->setRtpTime(stack.getPrevRtpTime() + 160);
  195.         stack.transmit (outPacket);
  196.         //        cerr <<"y";
  197.         // receive 20ms packet t
  198.         while (1)
  199.         {
  200.             tPacket = stack.receive ();
  201.             if (!tPacket) continue;
  202.             if (tPacket->getPayloadUsage() != 160)
  203.             {
  204.                 delete tPacket;
  205.                 tPacket = NULL;
  206.                 cerr << "T";
  207.                 continue;
  208.             }
  209.             break;
  210.         }
  211.         // write to card second 30ms part
  212.         if (160 != tPacket->getPayloadUsage()) cerr << "Y";
  213.         memcpy (outbuffer + 160 + 160, tPacket->getPayloadLoc(), 160);
  214.         if (tPacket)
  215.         {
  216.             delete tPacket;
  217.             tPacket = NULL;
  218.         }
  219.         write (ixj, outbuffer + 240, 240);
  220.         // send 20ms packet z
  221.         memcpy (outPacket->getPayloadLoc(), buffer + 160 + 160, 160);
  222.         outPacket->setRtpTime(stack.getPrevRtpTime() + 160);
  223.         stack.transmit (outPacket);
  224.         //        cerr <<"z";
  225.         // send and receive RTCP packet
  226.         // seperate to debug when packets are sent and recv
  227.         if (stack.checkIntervalRTCP())
  228.         {
  229.             stack.transmitRTCP();
  230.             cerr << "A";
  231.         }
  232.         if (!stack.receiveRTCP())
  233.             cerr << "B";
  234.     }
  235.     stack.transmitRTCPBYE();
  236.     ioctl(ixj, IXJCTL_REC_STOP);
  237.     ioctl(ixj, IXJCTL_PLAY_STOP);
  238.     ioctl(ixj, IXJCTL_AEC_STOP);
  239.     close(ixj);
  240.     return 0;
  241. }