[mythtv-commits] Ticket #7374: Seeking broken at greater than 3x

MythTV mythtv at cvs.mythtv.org
Tue Oct 20 06:23:18 UTC 2009


#7374: Seeking broken at greater than 3x
-------------------------------------+--------------------------------------
 Reporter:  anonymous                |       Owner:  janne  
     Type:  defect                   |      Status:  new    
 Priority:  critical                 |   Milestone:  0.22   
Component:  MythTV - Video Playback  |     Version:  0.22rc1
 Severity:  high                     |     Mlocked:  0      
-------------------------------------+--------------------------------------

Comment(by anonymous):

 Looking at changeset 22540 it appears that they inadvertently reversed the
 logic using -ffrew_skip if playspeed is greater than 0.

 Before:
 {{{
   ffrew_skip = (play_speed > 0.0) ? ffrew_skip : -ffrew_skip;
 }}}

 After:
 {{{
   if (play_speed > 0.0)
       ffrew_skip = -ffrew_skip;
 }}}


 Suggested change, just reverse the condition on line 4466:

 {{{
   if (play_speed < 0.0)
 }}}

 I am no programmer, in fact, this is the first C++ I have looked at since
 I learned Borland in the early 90s in highschool... I'll leave it to
 someone who knows what they are doing to create the patch.

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/7374#comment:2>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list