From 17ed8c53290eee47fcf085c1592b7e635055f1b3 Mon Sep 17 00:00:00 2001 From: Zolnai Tamás Date: Fri, 16 May 2014 22:57:33 +0200 Subject: 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 --- avmedia/source/opengl/oglplayer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'avmedia') 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 ) -- cgit