[mythtv-commits] Re: Ticket #511: Internal DVD player works only
10% of the time
MythTV
mythtv at cvs.mythtv.org
Fri Jan 6 15:27:53 UTC 2006
#511: Internal DVD player works only 10% of the time
-----------------------+----------------------------------------------------
Reporter: anonymous | Owner: jdonavan
Type: defect | Status: reopened
Priority: major | Milestone: 0.19
Component: mythdvd | Version: head
Severity: high | Resolution:
-----------------------+----------------------------------------------------
Comment (by skamithi at gmail.com):
I think this could be your issue. Found it while i was working on putting
together the basic dvd menu support patch.It's in decoderbase.cpp. Posting
patch with basic DVD menu support next week . I'll send an email to the
dev alias once its ready for testing.
Also something else. Use the mythdvd.patch attached to this bug to prevent
mythtv from finding a
bookmark while playing a dvd. with it enabled, if a bookmark is set, the
dvd menus don't show up.
i want to work on proper dvd bookmarking, just like the way iDVD for the
MAC does it.
===================================================================
--- decoderbase.cpp (revision 8513)
+++ decoderbase.cpp (working copy)
@@ -157,7 +157,8 @@
{
VERBOSE(VB_PLAYBACK, QString("Position map filled from DB to:
%1")
.arg((long int)
m_positionMap[m_positionMap.size()-1].index));
- indexOffset = m_positionMap[0].index;
+ if (!ringBuffer->isDVD())
+ indexOffset = m_positionMap[0].index;
}
return true;
--
Ticket URL: <http://svn.mythtv.org/trac/ticket/511>
MythTV <http://www.mythtv.org/>
MythTV
More information about the mythtv-commits
mailing list