diff -r b7b49303d0c0 -r 762d760dcfdf qtms/src/qtmsformat.cpp --- a/qtms/src/qtmsformat.cpp Fri Jul 23 17:48:16 2010 -0500 +++ b/qtms/src/qtmsformat.cpp Fri Aug 06 17:13:32 2010 -0500 @@ -22,52 +22,48 @@ QTMSFormat::QTMSFormat() : iFormat(NULL) - { - } +{ +} QTMSFormat::~QTMSFormat() - { +{ delete iFormat; - } +} gint QTMSFormat::GetSupportedBitRates(BitRateVector& aVector) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = iFormat->GetSupportedBitRates(aVector); - } + } return status; - } +} gint QTMSFormat::SetBitRate(const guint aBitrate) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = iFormat->SetBitRate(aBitrate); - } + } return status; - } +} gint QTMSFormat::GetBitRate(guint& aBitrate) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = iFormat->GetBitRate(aBitrate); - } + } return status; - } +} gint QTMSFormat::GetType(QTMSFormatType& fmttype) - { +{ gint status(QTMS_RESULT_UNINITIALIZED_OBJECT); - if (iFormat) - { + if (iFormat) { status = iFormat->GetType(fmttype); - } + } return status; - } +} // End of file