diff -r e26add186222 -r f504698d93b6 vtprotocolplugins/VideoSource/src/cmultiframeprovider.cpp --- a/vtprotocolplugins/VideoSource/src/cmultiframeprovider.cpp Tue Jul 06 14:18:02 2010 +0300 +++ b/vtprotocolplugins/VideoSource/src/cmultiframeprovider.cpp Wed Aug 18 09:50:25 2010 +0300 @@ -623,22 +623,22 @@ } // ----------------------------------------------------------------------------- -// CMultiframeProvider::AddBitmapToFreeQueue( CVtImageBitmap* aBitmap ) +// CMultiframeProvider::AddBitmapToFreeQueueL( CVtImageBitmap* aBitmap ) // ----------------------------------------------------------------------------- // -void CMultiframeProvider::AddBitmapToFreeQueue() +void CMultiframeProvider::AddBitmapToFreeQueueL() { __IF_DEBUG(Print(_L("VideoSource[%d]: CMultiframeProvider::AddBitmapToFreeQueue() >>"), RThread().Id().operator TUint())); if ( iOldBM ) - { - __IF_DEBUG(Print(_L("VideoSource[%d]: CMultiframeProvider::AddBitmapToFreeQueue() OLD BM"), RThread().Id().operator TUint())); - iOldBM = EFalse; + { + __IF_DEBUG(Print(_L("VideoSource[%d]: CMultiframeProvider::AddBitmapToFreeQueue() OLD BM"), RThread().Id().operator TUint())); + iOldBM = EFalse; User::LeaveIfError( iFreeQueue.Append( iOldBitmap ) ); - } + } else - { - User::LeaveIfError( iFreeQueue.Append( iScaled ) ); - } + { + User::LeaveIfError( iFreeQueue.Append( iScaled ) ); + } iLoopAo->SetFreeBitmaps( 1 ); __IF_DEBUG(Print(_L("VideoSource[%d]: CMultiframeProvider::AddBitmapToFreeQueue() <<"), RThread().Id().operator TUint())); }