qtms/src/qtmsilbc.cpp
changeset 50 762d760dcfdf
parent 32 edd273b3192a
--- 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<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