From: Andreas Frisch Date: Fri, 11 Jul 2008 14:11:11 +0000 (+0000) Subject: revert last revision (workaround no longer needed) X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=9020b3132d25acc5058f8cba754d63cc440815f7 revert last revision (workaround no longer needed) --- diff --git a/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp b/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp index 26a3ba3..bbcb1f2 100644 --- a/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp +++ b/lib/python/Plugins/Extensions/DVDPlayer/src/servicedvd.cpp @@ -593,10 +593,7 @@ RESULT eServiceDVD::getPlayPosition(pts_t &pos) pos += info.pos_minutes * 60; pos += info.pos_seconds; // eDebug("getPlayPosition %lld", pos); - if ( pos > 0 && pos < 32768 ) - pos *= 90000; - else - pos = 0; + pos *= 90000; return 0; }