qtms/src/qtmsilbc.cpp
changeset 51 e61a04404bdf
parent 32 edd273b3192a
--- 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<TMSILBCFormat*> (iFormat)->SetMode(aMode);
-        }
+    }
     return status;
-    }
+}
 
 gint QTMSILBCFormat::GetMode(QTMSG711CodecMode& aMode)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iFormat)
-        {
+    if (iFormat) {
         status = static_cast<TMSILBCFormat*> (iFormat)->GetMode(aMode);
-        }
+    }
     return status;
-    }
+}
 
 gint QTMSILBCFormat::SetCNG(const gboolean aCng)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iFormat)
-        {
+    if (iFormat) {
         status = static_cast<TMSILBCFormat*> (iFormat)->SetCNG(aCng);
-        }
+    }
     return status;
-    }
+}
 
 gint QTMSILBCFormat::GetCNG(gboolean& aCng)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iFormat)
-        {
+    if (iFormat) {
         status = static_cast<TMSILBCFormat*> (iFormat)->GetCNG(aCng);
-        }
+    }
     return status;
-    }
+}
 
 gint QTMSILBCFormat::SetVADMode(const gboolean aVad)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iFormat)
-        {
+    if (iFormat) {
         status = static_cast<TMSILBCFormat*> (iFormat)->SetVADMode(aVad);
-        }
+    }
     return status;
-    }
+}
 
 gint QTMSILBCFormat::GetVADMode(gboolean& aVad)
-    {
+{
     gint status(QTMS_RESULT_UNINITIALIZED_OBJECT);
-    if (iFormat)
-        {
+    if (iFormat) {
         status = static_cast<TMSILBCFormat*> (iFormat)->GetVADMode(aVad);
-        }
+    }
     return status;
-    }
+}
 
 // End of file