soundcardTest.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 phoneJack_cxx_Version =
  51.     "$Id: soundcardTest.cxx,v 1.1 2001/03/09 01:40:55 kimle 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 <sys/soundcard.h>
  58. #include "RtpSession.hxx"
  59. #include "cpLog.h"
  60. #define NETWORK_RTP_RATE 160
  61. static int deviceFD;
  62. RtpSession* audioStack;
  63. RtpPacket* outRtpPkt;
  64. RtpPacket* inRtpPkt;
  65. RtpPayloadType apiCodec;
  66. static int apiRate;
  67. int openAudioHardware( const char* pname )
  68. {
  69.     cerr <<"Opening audio hardwaren";
  70.     int audioFD;
  71.     int ioctlParam;
  72.     // open audio device
  73.     if( ( audioFD = open( pname, O_RDWR, 0 ) ) == -1 )
  74.     {
  75.         perror("Open failed:");
  76.         return -1;
  77.     }
  78.     // query audio formats
  79.     ioctlParam = -1;
  80.     if( ioctl( audioFD, SNDCTL_DSP_GETFMTS, &ioctlParam ) == -1 )
  81.     {
  82.         perror("SNDCTL_DSP_GETFMTS");
  83.         return -1;
  84.     }
  85.     // choose codec
  86.     if( ioctlParam & AFMT_MU_LAW )
  87.     {
  88.         cpLog(LOG_DEBUG,"Setting sound card to ulaw");
  89.         ioctlParam = AFMT_MU_LAW;
  90.         apiCodec = rtpPayloadPCMU;
  91.         apiRate = 160;
  92.     }
  93.     else if( ioctlParam & AFMT_S16_LE )
  94.     {
  95.         cpLog(LOG_DEBUG,"Setting sound card to linear16");
  96.         ioctlParam = AFMT_S16_LE;
  97.         apiCodec = rtpPayloadL16_mono;
  98.         apiRate = 320;
  99.     }
  100.     else
  101.     {
  102.         cpLog(LOG_ERR,"Sound card doesn't support any known encodings");
  103.         printf("Sound card supports the following (Mask:%d:)n", ioctlParam);
  104.         if( ioctlParam & AFMT_MU_LAW )     printf("  AFMT_MU_LAWn");
  105.         if( ioctlParam & AFMT_A_LAW )      printf("  AFMT_A_LAWn");
  106.         if( ioctlParam & AFMT_IMA_ADPCM )  printf("  AFMT_IMA_ADPCMn");
  107.         if( ioctlParam & AFMT_U8 )         printf("  AFMT_U8n");
  108.         if( ioctlParam & AFMT_S16_LE )     printf("  AFMT_S16_LEn");
  109.         if( ioctlParam & AFMT_S16_BE )     printf("  AFMT_S16_BEn");
  110.         if( ioctlParam & AFMT_S8 )         printf("  AFMT_S8n");
  111.         if( ioctlParam & AFMT_U16_LE )     printf("  AFMT_U16_LEn");
  112.         if( ioctlParam & AFMT_U16_BE )     printf("  AFMT_U16_BEn");
  113.         if( ioctlParam & AFMT_MPEG )       printf("  AFMT_MPEGn");
  114.         return -1;
  115.     }
  116.     // setting audio device parameters
  117.     int ioctlParamSave = ioctlParam;
  118.     if( ioctl( audioFD, SNDCTL_DSP_SETFMT, &ioctlParam ) == -1 )
  119.     {
  120.         perror("SNDCTL_DSP_SETFMT");
  121.         return -1;
  122.     }
  123.     if( ioctlParam != ioctlParamSave )
  124.     {
  125.         perror("Failed to set DSP Format, sound card returned format");
  126.         return -1;
  127.     }
  128.     ioctlParam = 1;
  129.     if( ioctl( audioFD, SNDCTL_DSP_CHANNELS, &ioctlParam ) == -1 )
  130.     {
  131.         perror("SNDCTL_DSP_CHANNELS");
  132.         return -1;
  133.     }
  134.     if( ioctlParam != 1)
  135.     {
  136.         perror("Failed to set channels");
  137.         return -1;
  138.     }
  139.     ioctlParam = 8000;
  140.     if( ioctl( audioFD, SNDCTL_DSP_SPEED, &ioctlParam ) == -1 )
  141.     {
  142.         perror("SNDCTL_DSP_SPEED");
  143.         return -1;
  144.     }
  145.     if( ioctlParam != 8000 )
  146.     {
  147.         perror("Failed to set sample rate");
  148.         return -1;
  149.     }
  150.     return audioFD;
  151. }
  152. int closeAudioHardware( int audioFD )
  153. {
  154.     cerr <<"Closing audio hardwaren";
  155.     if( ioctl( audioFD, SNDCTL_DSP_RESET, 0 ) == -1 )
  156.     {
  157.         perror("SNDCTL_DSP_RESET");
  158.     }
  159.     close( audioFD );
  160.     return 1;
  161. }
  162. int audioStart ( char* rmtHost, int rmtPort, int lclPort )
  163. {
  164.     cerr << "%%%   Starting audio   %%%n";
  165.     // open RTP session
  166.     cerr <<"Opening RtpSessionn";
  167.     audioStack = new RtpSession( rmtHost,
  168.                                  rmtPort, lclPort, 0, 0 );
  169.     assert( audioStack );
  170.     // setup network paramaters
  171.     cerr <<"Setting up network paramatersn";
  172.     audioStack->setApiFormat ( apiCodec, apiRate );
  173.     audioStack->setNetworkFormat ( rtpPayloadPCMU, NETWORK_RTP_RATE );
  174.     //if( lclPort )
  175.     //{
  176.     //    inRtpPkt = new RtpPacket( NETWORK_RTP_RATE );
  177.     //}
  178.     inRtpPkt = 0;
  179.     outRtpPkt = 0;
  180.     return 0;
  181. }
  182. int audioStop ()
  183. {
  184.     cerr << "%%%   Stopping audio   %%%n";
  185.     // close RTP session
  186.     audioStack->transmitRTCPBYE();
  187.     delete audioStack; audioStack = NULL;
  188.     if ( outRtpPkt )
  189.     {
  190.         delete outRtpPkt;
  191.         outRtpPkt = NULL;
  192.     }
  193.     if ( inRtpPkt )
  194.     {
  195.         delete inRtpPkt;
  196.         inRtpPkt = NULL;
  197.     }
  198.     return 0;
  199. }
  200. int main ( int argc, char* argv[] )
  201. {
  202.     if( argc < 3 )
  203.     {
  204.         cerr <<"Usage: "<<argv[0]<<" remoteHost remotePort localPortn";
  205.         cerr <<"Usage: "<<argv[0]<<" 0 0 localPortn";
  206.         cerr <<"Usage: "<<argv[0]<<" remoteHost remotePort localPortn";
  207.         return 0;
  208.     }
  209.     // turn on cplog
  210.     cpLogSetLabel ( "sampleUsage" );
  211.     cpLogSetPriority ( LOG_DEBUG_STACK );
  212.     // open audio session
  213.     deviceFD = openAudioHardware( "/dev/dsp" );
  214.     if( deviceFD < 0 )
  215.     {
  216.         cerr <<"Error opening audio hardwaren";
  217.         return -1;
  218.     }
  219.     audioStart( argv[ 1 ], atoi( argv[ 2 ] ), atoi( argv[ 3 ] ) );
  220.     usleep( 1000 );
  221.     int maxFD = 0;
  222.     fd_set rfds;
  223.     struct timeval tv;
  224.     if ( maxFD < deviceFD ) maxFD = deviceFD;
  225.     maxFD++;
  226.     char outBuffer[1024];
  227.     int cc;
  228.     while ( 1 )
  229.     {
  230.         FD_ZERO( &rfds );
  231.         FD_SET( deviceFD, &rfds );
  232.         tv.tv_sec = 0;
  233.         tv.tv_usec = 0;
  234.         // transmit an audio packet
  235.         if( atoi( argv[ 2 ] ) != 0 )
  236.         {
  237.             if ( select( maxFD, &rfds, NULL, NULL, &tv ) >= 0 )
  238.             {
  239.                 cerr << "t";
  240.                 cc = read ( deviceFD, outBuffer, apiRate );
  241.                 if ( cc > 0 )
  242.                 {
  243.                     audioStack->transmitRaw( outBuffer, cc );
  244.                 }
  245.             }
  246.             else cerr << "T";
  247.         }
  248.         // receive an audio packet
  249.         if( atoi( argv[ 3 ] ) != 0 )
  250.         {
  251.             inRtpPkt = audioStack->receive();
  252.             if( inRtpPkt )
  253.             {
  254.                 cerr << "r";
  255.                 write ( deviceFD, inRtpPkt->getPayloadLoc(),
  256.                                   inRtpPkt->getPayloadUsage() );
  257.                 delete inRtpPkt;
  258.             }
  259.             //else cerr << "R";
  260.         }
  261.     }
  262.     // close audio session
  263.     audioStop();
  264.     closeAudioHardware( deviceFD );
  265. }