gst_plugins_symbian/gst/devsound/gstilbcdecoderinterface.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 08:53:32 +0200
changeset 0 0e761a78d257
permissions -rw-r--r--
Revision: 200949 Kit: 200951

/*
* Copyright (c) 2009 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: 
*
*/


#ifndef __ILBC_DECODER_INTERFACE__H
#define __ILBC_DECODER_INTERFACE__H

#include <glib.h>
#include <gst/gstelement.h>
#include <gst/gstpluginfeature.h>
#include <gst/gst.h>
#include <glib-object.h>

G_BEGIN_DECLS

#define GST_TYPE_ILBC_DECODER               (gst_ilbc_decoder_get_type ())
#define GST_ILBC_DECODER(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_ILBC_DECODER, GstIlbcDecoder))
#define GST_ILBC_DECODER_CLASS(vtable)      (G_TYPE_CHECK_CLASS_CAST ((vtable), GST_TYPE_ILBC_DECODER, GstIlbcDecoderIntfc))
#define GST_IS_ILBC_DECODER(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_ILBC_DECODER))
#define GST_IS_ILBC_DECODER_CLASS(vtable)   (G_TYPE_CHECK_CLASS_TYPE ((vtable), GST_TYPE_ILBC_DECODER))
#define GST_ILBC_DECODER_GET_IFACE(obj)     (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GST_TYPE_ILBC_DECODER, GstIlbcDecoderIntfc))

typedef struct _GstIlbcDecoder     GstIlbcDecoder;
typedef struct _GstIlbcDecoderIntfc GstIlbcDecoderIntfc;


/**
*  Interface for Ilbc decoder.
*  This abstract class just provides the static NewL function for the creation
*  of the proxy, and also defines the custom interface to be implemented by the
*  proxy and the real custom interface implementation.
*
*/
enum TIlbcDecodeMode
	{
	E20msFrame = 1,
	E30msFrame
	};
	
struct _GstIlbcDecoderIntfc
    {
    GTypeInterface parent;  
    gint (*SetDecoderMode)(enum TIlbcDecodeMode aDecodeMode);
    gint (*SetCng)(gboolean aCng);
    gint (*GetCng)(gboolean* aCng);
    };

IMPORT_C GType gst_ilbc_decoder_get_type(void);

G_END_DECLS

#endif /* __ILBC_DECODER_INTERFACE__ */