summaryrefslogtreecommitdiff
path: root/dali/internal/video/common/video-player-impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dali/internal/video/common/video-player-impl.cpp')
-rw-r--r--dali/internal/video/common/video-player-impl.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/dali/internal/video/common/video-player-impl.cpp b/dali/internal/video/common/video-player-impl.cpp
index 0e2afc478..4166c174e 100644
--- a/dali/internal/video/common/video-player-impl.cpp
+++ b/dali/internal/video/common/video-player-impl.cpp
@@ -393,6 +393,22 @@ VideoPlayerPlugin* VideoPlayer::GetVideoPlayerPlugin()
return mPlugin;
}
+void VideoPlayer::SceneConnection()
+{
+ if(mPlugin != nullptr)
+ {
+ mPlugin->SceneConnection();
+ }
+}
+
+void VideoPlayer::SceneDisconnection()
+{
+ if(mPlugin != nullptr)
+ {
+ mPlugin->SceneDisconnection();
+ }
+}
+
} // namespace Adaptor
} // namespace Internal
} // namespace Dali