diff -r b7b49303d0c0 -r 762d760dcfdf qtms/src/qtmsilbc.cpp --- a/qtms/src/qtmsilbc.cpp Fri Jul 23 17:48:16 2010 -0500 +++ b/qtms/src/qtmsilbc.cpp Fri Aug 06 17:13:32 2010 -0500 @@ -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