multimediacommscontroller/tsrc/mmfstub/src/G711EncoderIntfc_STUB.cpp
author vnuitven <>
Mon, 06 Sep 2010 19:02:58 +0530 (2010-09-06)
branchrcs
changeset 51 a13dcee59a62
parent 0 1bce908db942
permissions -rw-r--r--
modifications in the copyright for these files
/*
* Copyright (c) 2002-2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:    Interface definition for G711 encoder interface.
*
*/




// INCLUDE FILES
#include "G711EncoderIntfcProxy_STUB.h"
#include "G711EncoderIntfc.h"
#include <MdaAudioInputStream.h>
#include <mmf/server/sounddevice.h>


// EXTERNAL DATA STRUCTURES

// EXTERNAL FUNCTION PROTOTYPES  

// CONSTANTS

// MACROS

// LOCAL CONSTANTS AND MACROS

// MODULE DATA STRUCTURES

// LOCAL FUNCTION PROTOTYPES

// FORWARD DECLARATIONS

// ============================= LOCAL FUNCTIONS ===============================

// ============================ MEMBER FUNCTIONS ===============================

// -----------------------------------------------------------------------------
// CG711EncoderIntfc::NewL
// Creates the custom interface.
// Calls the custom interface method on the devsound passed in.
// Devsound will return the handle to the custom interface proxy.
// (other items were commented in a header).
// -----------------------------------------------------------------------------
//
EXPORT_C CG711EncoderIntfc* 
CG711EncoderIntfc::NewL(CMMFDevSound& aDevSound)
    {
    return CG711EncoderIntfcProxy_STUB::NewL();
    }

// -----------------------------------------------------------------------------
// CG711EncoderIntfc::NewL
// Creates the custom interface.
// Calls the custom interface method on the CMdaAudioInputStream passed in.
// The CMdaAudioInputStream utility will return the handle to the custom
// interface proxy.
// (other items were commented in a header).
// -----------------------------------------------------------------------------
//
EXPORT_C CG711EncoderIntfc* 
CG711EncoderIntfc::NewL(CMdaAudioInputStream& aUtility)
    {
    return CG711EncoderIntfcProxy_STUB::NewL();
    }

// ========================== OTHER EXPORTED FUNCTIONS =========================

//  End of File