mmserv/tms/tmsimpl/src/tmseffectimpl.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 31 Mar 2010 22:29:45 +0300
branchRCL_3
changeset 10 3d8c721bf319
parent 0 71ca22bcf22a
child 13 f5c5c82a163e
permissions -rw-r--r--
Revision: 201011 Kit: 201013

/*
 * 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: Telephony Multimedia Service
 *
 */

#include "tmsvolumeeffectimpl.h"
#include "tmsgaineffectimpl.h"
#include "tmsglobalvoleffectimpl.h"
#include "tmsglobalgaineffectimpl.h"
#include "tmsutility.h"
#include "tmseffectimpl.h"

using namespace TMS;

TMSEffectImpl::TMSEffectImpl()
    {
    TRACE_PRN_FN_ENT;
    TRACE_PRN_FN_EXT;
    }

TMSEffectImpl::~TMSEffectImpl()
    {
    TRACE_PRN_FN_ENT;
    TRACE_PRN_FN_EXT;
    }

EXPORT_C gint TMSEffectImpl::Create(TMSEffectType effecttype,
        TMSEffect*& tmseffect)
    {
    gint ret(TMS_RESULT_INSUFFICIENT_MEMORY);
    TRACE_PRN_FN_ENT;
    switch (effecttype)
        {
        case TMS_EFFECT_VOLUME:
            ret = TMSVolumeEffectImpl::Create(tmseffect);
            break;
        case TMS_EFFECT_GAIN:
            ret = TMSGainEffectImpl::Create(tmseffect);
            break;
        case TMS_EFFECT_GLOBAL_VOL:
            ret = TMSGlobalVolEffectImpl::Create(tmseffect);
            break;
        case TMS_EFFECT_GLOBAL_GAIN:
            ret = TMSGlobalGainEffectImpl::Create(tmseffect);
            break;
        default:
            ret = TMS_RESULT_EFFECT_TYPE_NOT_SUPPORTED;
            break;
        }

    TRACE_PRN_FN_EXT;
    return ret;
    }

EXPORT_C gint TMSEffectImpl::Delete(TMSEffect*& tmseffect)
    {
    gint ret(TMS_RESULT_INVALID_ARGUMENT);
    TRACE_PRN_FN_ENT;
    TMSEffectType effecttype;
    ret = tmseffect->GetType(effecttype);
    switch (effecttype)
        {
        case TMS_EFFECT_VOLUME:
            delete (TMSVolumeEffectImpl*) (tmseffect);
            tmseffect = NULL;
            break;
        case TMS_EFFECT_GAIN:
            delete (TMSGainEffectImpl*) (tmseffect);
            tmseffect = NULL;
            break;
        case TMS_EFFECT_GLOBAL_VOL:
            delete (TMSGlobalVolEffectImpl*) (tmseffect);
            tmseffect = NULL;
            break;
        case TMS_EFFECT_GLOBAL_GAIN:
            delete (TMSGlobalGainEffectImpl*) (tmseffect);
            tmseffect = NULL;
            break;
        default:
            ret = TMS_RESULT_EFFECT_TYPE_NOT_SUPPORTED;
            break;
        }

    TRACE_PRN_FN_EXT;
    return ret;
    }

// End of file