[mythtv-commits] Ticket #774: XvMC LiveTV playback broken

MythTV mythtv at cvs.mythtv.org
Tue Jan 31 01:30:10 UTC 2006


#774: XvMC LiveTV playback broken
-----------------------+----------------------------------------------------
 Reporter:  anonymous  |        Owner:  danielk
     Type:  defect     |       Status:  closed 
 Priority:  minor      |    Milestone:  0.19   
Component:  mythtv     |      Version:  head   
 Severity:  medium     |   Resolution:  fixed  
-----------------------+----------------------------------------------------
Comment (by anonymous):

 Daniel, thanks for getting my tweak committed.  However,  don't think it
 went in quite the way you intended:

 You've added:

     if ((videoOutput->hasMCAcceleration()   ||
          videoOutput->hasIDCTAcceleration() ||
          videoOutput->hasVLDAcceleration()) &&
         (videoOutput->EnoughDecodedFrames()))
     {
         SetPrebuffering(false);
     }

 #if FAST_RESTART
     if (videoOutput->EnoughPrebufferedFrames())
         SetPrebuffering(false);
 #else
     if (videoOutput->EnoughDecodedFrames())
         SetPrebuffering(false);
 #endif

 where I think you meant to put "EnoughPrebufferedFrames()" in the "is MC-
 enabled?" if block.  Otherwise it we end up with "if
 EnoughDecodedFrames()"
 whether MC is enabled or not.

-- 
Ticket URL: <http://cvs.mythtv.org/trac/ticket/774>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list