diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-05-16 22:57:33 +0200 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-05-16 22:57:50 +0200 |
commit | 17ed8c53290eee47fcf085c1592b7e635055f1b3 (patch) | |
tree | 63e4e4951d497d07a4b816f9a092f84b31ed54cc /avmedia | |
parent | 5eeea7c91d87ee8f0b8bc8c0144c04fb84310bbf (diff) |
OGLPlayer: comment out gltf_animation_get_time
It leads confusing behavior. Time is not set by now
because set method does not work.
Change-Id: I447d07d4193e25e6916ee05ee335d4cf150380a2
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/opengl/oglplayer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/avmedia/source/opengl/oglplayer.cxx b/avmedia/source/opengl/oglplayer.cxx index f789acd4dde2..83f5221e52ef 100644 --- a/avmedia/source/opengl/oglplayer.cxx +++ b/avmedia/source/opengl/oglplayer.cxx @@ -147,7 +147,7 @@ void SAL_CALL OGLPlayer::setMediaTime( double fTime ) throw ( uno::RuntimeExcept double SAL_CALL OGLPlayer::getMediaTime() throw ( ::com::sun::star::uno::RuntimeException, std::exception ) { osl::MutexGuard aGuard(m_aMutex); - return gltf_animation_get_time(m_pHandle); + return 0.0; //gltf_animation_get_time(m_pHandle); } double SAL_CALL OGLPlayer::getRate() throw ( uno::RuntimeException, std::exception ) |