phoneJack.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 phoneJack_cxx_Version =
  51.     "$Id: phoneJack.cxx,v 1.12 2001/03/23 19:19:08 wjin Exp $";
  52. #include <iostream.h>
  53. #include <stdio.h>
  54. #include <fcntl.h>
  55. #include <sys/ioctl.h>
  56. #include <sys/time.h>
  57. #include "ixjuser.h"
  58. #include "RtpSession.hxx"
  59. #include "cpLog.h"
  60. #define ULAW_PAYLOAD 240
  61. #define RESID_RTP_RATE 240
  62. #define NETWORK_RTP_RATE 160
  63. static int deviceFD;
  64. RtpSession* audioStack;
  65. RtpPacket* outRtpPkt;
  66. RtpPacket* inRtpPkt;
  67. int audioStart (char* rmtHost, int rmtPort, int lclPort)
  68. {
  69.     cerr << "%%%   Starting audio   %%%n";
  70.     deviceFD = open("/dev/phone0", O_RDWR);
  71.     audioStack = new RtpSession(rmtHost, rmtPort, lclPort, rmtPort + 1,
  72.                                 lclPort + 1, rtpPayloadPCMU, rtpPayloadPCMU, 5);
  73.     assert(audioStack);
  74.     outRtpPkt = audioStack->createPacket();
  75.     assert (outRtpPkt);
  76.     inRtpPkt = NULL;
  77.     audioStack->setApiPktSize (RESID_RTP_RATE);
  78.     audioStack->setNetworkPktSize (NETWORK_RTP_RATE);
  79.     ioctl(deviceFD, IXJCTL_PLAY_CODEC, ULAW);
  80.     ioctl(deviceFD, IXJCTL_REC_CODEC, ULAW);
  81.     ioctl(deviceFD, IXJCTL_PLAY_START);
  82.     ioctl(deviceFD, IXJCTL_REC_START);
  83.     ioctl(deviceFD, IXJCTL_AEC_START, 1);
  84.     cpLog (LOG_DEBUG, "echoCancellation is on");
  85.     ioctl(deviceFD, IXJCTL_MIXER, 0x0C03);   // 06 is too soft
  86.     ioctl(deviceFD, IXJCTL_MIXER, 0x0F01);   // 02 is too soft
  87.     return 0;
  88. }
  89. int audioStop ()
  90. {
  91.     cerr << "%%%   Stopping audio   %%%n";
  92.     // make hardware calls to stop audio
  93.     ioctl(deviceFD, IXJCTL_REC_STOP);
  94.     ioctl(deviceFD, IXJCTL_PLAY_STOP);
  95.     ioctl(deviceFD, IXJCTL_AEC_STOP);
  96.     close(deviceFD);
  97.     deviceFD = open("/dev/phone0", O_RDWR);
  98.     if (deviceFD < 0)
  99.     {
  100.         cerr << "Cannot reopen /dev/phone0" << endl;
  101.         exit(1);
  102.     }
  103.     // close RTP session
  104.     audioStack->transmitRTCPBYE();
  105.     delete audioStack; audioStack = NULL;
  106.     delete outRtpPkt; outRtpPkt = NULL;
  107.     if (inRtpPkt)
  108.     {
  109.         delete inRtpPkt;
  110.         inRtpPkt = NULL;
  111.     }
  112.     return 0;
  113. }
  114. int main (int argc, char* argv[])
  115. {
  116.     audioStart(argv[1], atoi(argv[2]), atoi(argv[3]));
  117.     usleep(1000);
  118.     cpLogSetLabel ("sampleUsage");
  119.     cpLogSetPriority (LOG_DEBUG);
  120.     int rtpFD = (audioStack->getRtpRecv())->getSocketFD();
  121.     int rtcpFD = (audioStack->getRtcpRecv())->getSocketFD();
  122.     int maxFD = 0;
  123.     if ( (rtpFD < 0) || (rtcpFD < 0) )
  124.         printf("failure on RTP socketn");
  125.     fd_set rfds;
  126.     struct timeval tv;
  127.     tv.tv_sec = 0;
  128.     tv.tv_usec = 300;
  129.     if ( maxFD < deviceFD ) maxFD = deviceFD;
  130.     if ( maxFD < rtpFD) maxFD = rtpFD;
  131.     if ( maxFD < rtcpFD) maxFD = rtcpFD;
  132.     maxFD++;
  133.     int hook, retval, cc;
  134.     printf("Waiting for hookswitchn");
  135.     hook = ioctl(deviceFD, IXJCTL_HOOKSTATE);
  136.     while (hook != 1)
  137.     {
  138.         hook = ioctl(deviceFD, IXJCTL_HOOKSTATE);
  139.     }
  140.     //    while ( (hook = (ioctl(deviceFD, IXJCTL_HOOKSTATE))) )
  141.     while (1)
  142.     {
  143.         FD_ZERO(&rfds);
  144.         FD_SET(rtpFD, &rfds);
  145.         FD_SET(rtcpFD, &rfds);
  146.         FD_SET(deviceFD, &rfds);
  147.         tv.tv_sec = 0;
  148.         tv.tv_usec = 300;
  149.         retval = select(maxFD, &rfds, NULL, NULL, &tv);
  150.         if (retval >= 0)
  151.         {
  152.             usleep(0);
  153.             if ( hook != (ioctl(deviceFD, IXJCTL_HOOKSTATE)) )
  154.             {
  155.                 break;
  156.             }
  157.             //        if (FD_ISSET(rtpFD, &rfds))                // read data from network
  158.             //        {
  159.             inRtpPkt = audioStack->receive();
  160.             if (inRtpPkt)
  161.             {
  162.                 //                cerr << "r";
  163.                 //                assert (inRtpPkt->getPayloadUsage() == RESID_RTP_RATE);
  164.                 write (deviceFD, inRtpPkt->getPayloadLoc(),
  165.                        inRtpPkt->getPayloadUsage());
  166.                 delete inRtpPkt;
  167.                 inRtpPkt = NULL;
  168.             }
  169.             else
  170.             {
  171.                 //                cerr << "n";
  172.             }
  173.             //        }
  174.             //        if (FD_ISSET(deviceFD, &rfds))        // read data from phone
  175.             //        {
  176.             cc = read (deviceFD, outRtpPkt->getPayloadLoc(), RESID_RTP_RATE);
  177.             if (cc > 0)
  178.             {
  179.                 //                assert (cc == RESID_RTP_RATE);
  180.                 outRtpPkt->setPayloadUsage(cc);
  181.                 //                outRtpPkt->setRtpTime(dataStack.getPrevRtpTime() + 240);
  182.                 audioStack->transmit(outRtpPkt);
  183.                 //                cerr << "t";
  184.             }
  185.             else
  186.             {
  187.                 //                cerr << "m";
  188.             }
  189.             //        }
  190.             audioStack->processRTCP();
  191.         } /* if (retval >=0) */
  192.     } /* end while() */
  193.     audioStop();
  194. }