--- a/videoplayback/videohelix/src/mpxvideoaccessoryobserver.cpp Mon May 03 12:32:50 2010 +0300
+++ b/videoplayback/videohelix/src/mpxvideoaccessoryobserver.cpp Fri May 14 15:53:50 2010 +0300
@@ -15,7 +15,7 @@
*
*/
-// Version : %version: 8 %
+// Version : %version: 9 %
//
// INCLUDE FILES
@@ -84,7 +84,6 @@
: CActive( CActive::EPriorityStandard )
, iController( aController )
, iTvOutConnected( EFalse )
- , iTvOutPlaybackAllowed( ETrue )
{
CActiveScheduler::Add( this );
}
@@ -180,19 +179,6 @@
if ( iTvOutConnected != tvOutConnected )
{
iTvOutConnected = tvOutConnected;
-
- if ( iTvOutConnected )
- {
- //
- // Check the playablility of the clip
- //
- iTvOutPlaybackAllowed = iController->iPlaybackMode->IsTvOutAllowedL();
- }
- else
- {
- iTvOutPlaybackAllowed = ETrue;
- }
-
statusChanged = ETrue;
}
@@ -275,16 +261,4 @@
return iTvOutConnected;
}
-// -------------------------------------------------------------------------------------------------
-// CMPXVideoAccessoryObserver::IsTvOutPlaybackAllowed
-// -------------------------------------------------------------------------------------------------
-//
-TBool CMPXVideoAccessoryObserver::IsTvOutPlaybackAllowed()
-{
- TBool playAllowed = ( ! iTvOutConnected || iTvOutPlaybackAllowed );
- MPX_DEBUG(_L("CMPXVideoAccessoryObserver::IsTvOutPlaybackAllowed(%d)"), playAllowed);
-
- return playAllowed;
-}
-
// End of File