mmmw_plat/voip_audio_services_api/inc/voipg729decoderintfc.h
changeset 0 71ca22bcf22a
child 3 4f62049db6ac
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Defines APIs specific to G.729 decoder.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __VOIPG729DECFORMATINTFC_H
       
    20 #define __VOIPG729DECFORMATINTFC_H
       
    21 
       
    22 #include <voipaudiocommon.h>
       
    23 #include <voipformatintfc.h>
       
    24 
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CVoIPG729DecoderIntfcImpl;
       
    28 
       
    29 
       
    30 /**
       
    31  *  CVoIPG729DecoderIntfc class
       
    32  *
       
    33  *  G.729 decoder configuration class
       
    34  *
       
    35  *  @lib VoIPAudioIntfc.dll
       
    36  *  @since S60 v5.0
       
    37  */
       
    38 class CVoIPG729DecoderIntfc : public CVoIPFormatIntfc
       
    39     {
       
    40 public:
       
    41     /**
       
    42      * Destructor
       
    43      *
       
    44      * @since S60 v5.0
       
    45      * @param none
       
    46      * @return none
       
    47      */
       
    48     IMPORT_C virtual ~CVoIPG729DecoderIntfc();
       
    49 
       
    50     /**
       
    51      * ?description
       
    52      *
       
    53      * @since S60 v5.0
       
    54      * @param none
       
    55      * @return TInt
       
    56      */
       
    57     IMPORT_C TInt BadLsfNextBuffer();
       
    58 
       
    59 protected:
       
    60     /**
       
    61      * Constructor
       
    62      *
       
    63      * @since S60 v5.0
       
    64      * @param none
       
    65      * @return none
       
    66      */
       
    67     CVoIPG729DecoderIntfc();
       
    68 
       
    69     /**
       
    70      * 2-nd phase constructor
       
    71      *
       
    72      * @since S60 v5.0
       
    73      * @param CVoIPG729DecoderIntfcImpl*
       
    74      * @return void
       
    75      */
       
    76     void ConstructL(CVoIPG729DecoderIntfcImpl* aFormatIntfcImpl);
       
    77 
       
    78 protected:
       
    79     CVoIPG729DecoderIntfcImpl* iFormatIntfcImpl;
       
    80 
       
    81     };
       
    82 
       
    83 
       
    84 #endif //__VOIPG729DECFORMATINTFC_H
       
    85 
       
    86 // End of file