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