diff -r d141fc1ad77b -r e61a04404bdf qtms/src/qtmsilbc.cpp --- a/qtms/src/qtmsilbc.cpp Tue Jul 06 14:48:59 2010 +0300 +++ b/qtms/src/qtmsilbc.cpp Wed Aug 18 10:16:02 2010 +0300 @@ -23,71 +23,65 @@ using namespace TMS; QTMSILBCFormat::QTMSILBCFormat() - { - } +{ +} QTMSILBCFormat::~QTMSILBCFormat() - { - } +{ +} gint QTMSILBCFormat::SetMode(const QTMSG711CodecMode aMode) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->SetMode(aMode); - } + } return status; - } +} gint QTMSILBCFormat::GetMode(QTMSG711CodecMode& aMode) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->GetMode(aMode); - } + } return status; - } +} gint QTMSILBCFormat::SetCNG(const gboolean aCng) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->SetCNG(aCng); - } + } return status; - } +} gint QTMSILBCFormat::GetCNG(gboolean& aCng) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->GetCNG(aCng); - } + } return status; - } +} gint QTMSILBCFormat::SetVADMode(const gboolean aVad) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->SetVADMode(aVad); - } + } return status; - } +} gint QTMSILBCFormat::GetVADMode(gboolean& aVad) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = static_cast (iFormat)->GetVADMode(aVad); - } + } return status; - } +} // End of file