[4.0] Fixed SVACE issue 38/153738/1
authorJinho, Lee <jeano.lee@samsung.com>
Fri, 29 Sep 2017 08:31:55 +0000 (17:31 +0900)
committerJinho, Lee <jeano.lee@samsung.com>
Fri, 29 Sep 2017 08:31:57 +0000 (17:31 +0900)
This reverts commit 0cbfc475a99db206738e3ffaff71fac783ffdb9d.

Change-Id: I088c309d492f80dca3c91b7a369bf1b1c6b11279

dali-extension/video-player/tizen-video-player.cpp

index f7baa50..1277a53 100644 (file)
@@ -209,11 +209,18 @@ void LogPlayerError( int error )
 } // unnamed namespace
 
 TizenVideoPlayer::TizenVideoPlayer()
-: mPlayer( NULL ),
+: mUrl(),
+  mPlayer( NULL ),
   mPlayerState( PLAYER_STATE_NONE ),
   mTbmSurface( NULL ),
   mPacket( NULL ),
+  mNativeImageSourcePtr( NULL ),
+  mTimer( NULL ),
+  mBackgroundColor( Dali::Vector4( 1.0f, 1.0f, 1.0f, 0.0f ) ),
   mTargetType( NativeImage ),
+  mPacketMutex(),
+  mPacketVector(),
+  mEcoreWlWindow( NULL ),
   mAlphaBitChanged( false )
 {
 }