srsf/devtts/src/nssdevtts.rss
branchRCL_3
changeset 18 cad71a31b7fc
parent 17 8ce15fced3a6
child 19 e36f3802f733
equal deleted inserted replaced
17:8ce15fced3a6 18:cad71a31b7fc
     1 /*
       
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Configruration data for DevTTS algorithm manager
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  INCLUDES
       
    20 #include "nssdevtts.rh"
       
    21 
       
    22 //  RESOURCE DEFINITIONS 
       
    23 // -----------------------------------------------------------------------------
       
    24 //   
       
    25 // DEVTTSCONFIGURATIONS
       
    26 // Configurations for DevTTS algorithm manager
       
    27 //
       
    28 // -----------------------------------------------------------------------------
       
    29 //
       
    30 RESOURCE DEVTTSCONFIGURATIONS r_devtts_configurations
       
    31     {
       
    32     // Sampling rate
       
    33     samplingRate = 16000;
       
    34     
       
    35     // Bits per sample
       
    36     bitsPerSample = 16;
       
    37     
       
    38     // Non zero if stereo, mono equals to 0
       
    39     isStereo = 0;
       
    40     
       
    41     // Playback buffer size
       
    42     bufferSize = 4096;
       
    43 
       
    44     // Reserves
       
    45     reserve1 = 0;
       
    46     reserve2 = 0;
       
    47     reserve3 = 0;
       
    48     }
       
    49 
       
    50 // End of File
       
    51 
       
    52