diff -r d141fc1ad77b -r e61a04404bdf qtms/src/qtmsformat.cpp --- a/qtms/src/qtmsformat.cpp Tue Jul 06 14:48:59 2010 +0300 +++ b/qtms/src/qtmsformat.cpp Wed Aug 18 10:16:02 2010 +0300 @@ -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