Revert "[4.0] Added an devel-API to check whether video texture is supported" 38/155638/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 01:52:54 +0000 (10:52 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 01:53:04 +0000 (10:53 +0900)
This reverts commit b6a3a40939f19bc3197e7dbac990e83decf272eb.

Change-Id: I611063415e7373934f9085f1ca64f5b0502cd92b

adaptors/common/video-player-impl.cpp
adaptors/common/video-player-impl.h
adaptors/devel-api/adaptor-framework/video-player-plugin.h
adaptors/devel-api/adaptor-framework/video-player.cpp
adaptors/devel-api/adaptor-framework/video-player.h

index 0807e2a..50e3e6b 100644 (file)
@@ -289,16 +289,6 @@ void VideoPlayer::Backward( int millisecond )
   }
 }
 
-bool VideoPlayer::IsVideoTextureSupported()
-{
-  if( mPlugin != NULL )
-  {
-    return mPlugin->IsVideoTextureSupported();
-  }
-
-  return false;
-}
-
 } // namespace Adaptor;
 } // namespace Internal;
 } // namespace Dali;
index 498a761..e37b5f6 100644 (file)
@@ -159,11 +159,6 @@ public:
    */
   void Backward( int millisecond );
 
-  /**
-   * @brief Dali::VideoPlayer::IsVideoTextureSupported()
-   */
-  bool IsVideoTextureSupported();
-
 private:
 
   /**
index 10a6d5d..4bbcc04 100644 (file)
@@ -211,12 +211,6 @@ public:
    */
   virtual void Backward( int millisecond ) = 0;
 
-  /**
-   * @brief Checks whether the video texture is supported
-   * @return True if supported, otherwise false.
-   */
-  virtual bool IsVideoTextureSupported() = 0;
-
 };
 
 } // namespace Dali;
index 048a9f0..fb4b2a2 100644 (file)
@@ -171,10 +171,5 @@ void VideoPlayer::Backward( int millisecond )
   GetImplementation( *this ).Backward( millisecond );
 }
 
-bool VideoPlayer::IsVideoTextureSupported()
-{
-  return GetImplementation( *this ).IsVideoTextureSupported();
-}
-
 } // namespace Dali;
 
index c630c72..8c69719 100644 (file)
@@ -241,12 +241,6 @@ public:
    */
   void Backward( int millisecond );
 
-  /**
-   * @brief Checks whether the video texture is supported
-   * @return True if supported, otherwise false.
-   */
-  bool IsVideoTextureSupported();
-
 private: // Not intended for application developers
 
   /**