srsf/devtts/src/nssdevtts.rh
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     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 <badef.rh>
       
    21 
       
    22 //  STRUCTURE DEFINITIONS
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // DEVTTSCONFIGURATIONS
       
    26 // Configurations for DevTTS algorithm manager
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 STRUCT DEVTTSCONFIGURATIONS
       
    30     {
       
    31     // Sampling rate
       
    32     LONG samplingRate;
       
    33     
       
    34     // Bits per sample
       
    35     LONG bitsPerSample;
       
    36     
       
    37     // Non zero if stereo, mono equals to 0
       
    38     LONG isStereo;
       
    39     
       
    40     // Playback buffer size
       
    41     LONG bufferSize;
       
    42     
       
    43     // Reserves
       
    44     LONG reserve1;
       
    45     LONG reserve2;
       
    46     LONG reserve3;
       
    47     }
       
    48 
       
    49 // End of File