testauddevice.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:9k
源码类别:

Symbian

开发平台:

Visual C++

  1. #/* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: testauddevice.cpp,v 1.2.50.1 2004/07/09 02:02:13 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include <stdio.h>
  50. #include <stdlib.h>
  51. #include <string.h>
  52. #ifdef _SYMBIAN
  53. #include <e32math.h>
  54. #endif
  55. #include "hxresult.h"
  56. #include "hxcom.h"
  57. #include "hxausvc.h"
  58. #include "hxengin.h"
  59. #include "ihxpckts.h"   
  60. #include "hxtypes.h"
  61. #include "hxaudev.h"
  62. #include "hxbuffer.h"
  63. extern "C"
  64. {
  65.     
  66. int audioTestEntry(void)
  67. {
  68.     HX_RESULT res = HXR_OK; 
  69.     
  70.     //Create an audio device.
  71.     fprintf( stderr, "Creating an audio device instance....n" ); 
  72.     CHXAudioDevice* pDevice = NULL;
  73.     pDevice = CHXAudioDevice::Create();
  74.     if( !pDevice )
  75.     {
  76.         fprintf( stderr, "couldn't create device. *FAILED*n" );
  77.         sleep(2);
  78.         return 1;
  79.     }
  80.     //Set up the format...
  81.     HXAudioFormat audioFormat;
  82.     audioFormat.uChannels        = 2;     // 1 or 2
  83.     audioFormat.uBitsPerSample   = 16;    // 8 or 16
  84.     audioFormat.ulSamplesPerSec  = 44100; // 11025, 21050, 44100.
  85.     //The block size we will make the number of bytes required for
  86.     //1/10th of a second of audio given the above format. The block
  87.     //size is the amount of data we write to the audio device each
  88.     //time.
  89.     int bytesPerSample    = audioFormat.uChannels*audioFormat.uBitsPerSample/8;  
  90.     int samplesInOneTenth = audioFormat.ulSamplesPerSec/10;
  91.     const int blockSize   = bytesPerSample*samplesInOneTenth;
  92.     audioFormat.uMaxBlockSize = blockSize;
  93.     fprintf( stderr, "Block Size set to %dn", audioFormat.uMaxBlockSize ); 
  94.     //It is OK to fail this as not all audio devices support all
  95.     //formats. If it does fail the client core would choose the next
  96.     //'lower' format until it finds one the device supports. at that
  97.     //point it would use the resampler to downsample the pcm. We won't
  98.     //do that here, just make sure whatever device you are testing
  99.     //support the above format.
  100.     fprintf( stderr, "Checking the format.....n" );
  101.     res = pDevice->CheckFormat( &audioFormat );
  102.     if( res!=HXR_OK )
  103.     {
  104.         fprintf( stderr, "check format *FAILED*.n" );
  105.         sleep(2);
  106.         return 1;
  107.     }
  108.     //open the device.
  109.     fprintf( stderr, "Opening the device....n" ); 
  110.     res = pDevice->Open( &audioFormat, NULL );
  111.     if( FAILED(res) )
  112.     {
  113.         fprintf( stderr, "*FAILED* to open audio device.n" );
  114.         sleep(2);
  115.         return 1;
  116.     }
  117.     //Init the volume. This does not have to be supported by devices.
  118.     if( pDevice->InitVolume(0,100))
  119.         fprintf( stderr, "Device supports volume....n" );
  120.     else
  121.         fprintf( stderr, "Device does not support volume....n" ); 
  122.     //Get and set the volume...
  123.     int curVolume = pDevice->GetVolume();
  124.     fprintf( stderr, "Current volume is %dn", curVolume );
  125.     int newVolume = 90;
  126.     if( curVolume == newVolume )
  127.         newVolume = 950;
  128.         
  129.     fprintf( stderr, "Setting volume to %dn", newVolume );
  130.     pDevice->SetVolume(newVolume);
  131.     if( pDevice->GetVolume() != newVolume )
  132.     {
  133.         fprintf( stderr, "*FAILED* to set volumen" );
  134.         sleep(2);
  135.         return 1;
  136.     }
  137.     //Pause the device until we are ready....
  138.     fprintf( stderr, "Pausing audio devicen" );
  139.     res = pDevice->Pause();
  140.     if( FAILED(res) )
  141.     {
  142.         fprintf( stderr, "*FAILED* to pause device....n" );
  143.         sleep(2);
  144.         return 1;
  145.     }
  146.     
  147.     //try to play some pcm data.....
  148.     //
  149.     // Pump in PCM data here. Make sure we pump it in so fast that the
  150.     // device falls behind so we can do some pause/resume stuff
  151.     // below...
  152.     //
  153.     fprintf( stderr, "Pushing down 5 seconds of PCM...n" ); 
  154.     unsigned char* szBuff = new unsigned char[blockSize];
  155.     HXAudioData   audioData;
  156.     audioData.ulAudioTime=0;
  157.     
  158.     //Fill our 1/10th second buffer 50 times. 5 seconds of total audio.
  159.     INT16 n = 0;
  160.     TReal cur = 0.0;
  161.     TReal xfade = 0.0;
  162.     TInt  dir=1.0;
  163.     
  164.     for( int i=0 ; i<50 ; i++ )
  165.     {
  166.         TReal rad = (2.0*3.1415926)/(float)audioFormat.ulSamplesPerSec * 300.0*(float)i/5 ;
  167.         int byte=0;
  168.         for( int sample=0; sample<audioFormat.ulSamplesPerSec/10; sample++ )
  169.         {
  170.             for( int channel=0; channel<audioFormat.uChannels; channel++ )
  171.             {
  172.                 //Fill each channel with some data
  173.                 TReal amp;
  174.                 Math::Sin(amp, cur); //got the sample.
  175.                 if( audioFormat.uBitsPerSample == 16 )
  176.                 {
  177.                     amp = amp*((1<<15)-1);
  178.                     INT16* pTmp = (INT16*)(szBuff+byte);
  179.                     if( channel == 0 )
  180.                         *pTmp = (INT16)(amp*xfade);
  181.                    else
  182.                        *pTmp = (INT16)(amp*(1-xfade));
  183.                         
  184.                     byte += 2;
  185.                 }
  186.                 else
  187.                 {
  188.                     amp = amp*127+127;
  189.                     szBuff[byte]=(INT8)amp;
  190.                     byte++;
  191.                 }
  192.             }
  193.             cur = cur+rad;
  194.             if( cur>=(2*3.1415926) )
  195.                 cur = 0;
  196.             xfade = xfade + (1.0/(5.0*(float)audioFormat.ulSamplesPerSec))*10*dir;
  197.             if(xfade>1)
  198.             {
  199.                 dir *= -1;
  200.                 xfade=1;
  201.             }
  202.             if(xfade<0)
  203.             {
  204.                 dir *= -1;
  205.                 xfade=0;
  206.             }
  207.             
  208.         }
  209.         
  210.         //write this block of data to the audio device.
  211.         audioData.pData = new CHXBuffer();
  212.         if( !audioData.pData )
  213.         {
  214.             fprintf( stderr, "Out of memory....n" );
  215.             return 1;
  216.         }
  217.         
  218.         audioData.pData->AddRef();
  219.         audioData.pData->Set(szBuff, blockSize);
  220.         res = pDevice->Write(&audioData);
  221.         HX_RELEASE( audioData.pData );
  222.         if( FAILED(res) )
  223.         {
  224.             fprintf( stderr, "*FAILED* to write to the audio devicen" );
  225.             pDevice->Close(TRUE);
  226.             sleep(2);
  227.             return 1;
  228.         }
  229.     }
  230.     HX_VECTOR_DELETE(szBuff);
  231.     fprintf( stderr, "Resuming the device you should hear 5 seconds of sound...n" );
  232.     res = pDevice->Resume();
  233.     if( FAILED(res) )
  234.     {
  235.         fprintf( stderr, "*FAILED* to resume...n" );
  236.         sleep(2);
  237.         return 1;
  238.     }
  239.     
  240. //     ULONG32 ulTime = 0;
  241. //     while( pDevice->NumberOfBlocksRemainingToPlay() )
  242. //     {
  243. //         pDevice->Write(NULL);
  244. //         pDevice->GetCurrentAudioTime(ulTime);
  245. //         fprintf( stderr, "Current Audio time is: %lun", ulTime ); 
  246. //     }
  247.     
  248. //     //Close the device
  249. //     res = pDevice->Close(FALSE);
  250. //     if( FAILED(res) )
  251. //     {
  252. //         fprintf( stderr, "*FAILED* to close the device...n" );
  253. //         sleep(2);
  254. //         return 1;
  255. //     }
  256.     
  257.     fprintf( stderr, "nAudio device unit test *PASSED*. Give yourself a gold starn" ); 
  258.     return 0;
  259. }
  260. };