os/mm/mm_plat/aac_decoder_config_api/inc/AudioConfig.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200 (2014-06-10)
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-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:  Audio configuration structure definition.
    15 *
    16 */
    17 
    18 
    19 #ifndef AUDIOCONFIG_H
    20 #define AUDIOCONFIG_H
    21 
    22 // INCLUDES
    23 #include <e32base.h>
    24 
    25 // CONSTANTS
    26 
    27 // MACROS
    28 
    29 // DATA TYPES
    30 class TAudioConfig
    31     {
    32     public:
    33     // DATA TYPES
    34     enum TAudioObjectType
    35         {
    36         ENull    = 0,
    37         EAacMain = 1,
    38         EAacLc   = 2,
    39         EAacSsr  = 3,
    40         EAacLtp  = 4,
    41         ESbr     = 5
    42         };
    43 
    44     TAudioObjectType iAudioObjectType;
    45     };
    46     
    47 
    48 // FUNCTION PROTOTYPES
    49 
    50 // FORWARD DECLARATIONS
    51 
    52 // CLASS DECLARATION
    53 
    54 #endif      // AUDIOCONFIG_H
    55             
    56 // End of File