[mythtv-commits] Ticket #5043: Audio skips when using timestretch

MythTV mythtv at cvs.mythtv.org
Wed Mar 26 04:38:22 UTC 2008


#5043: Audio skips when using timestretch
---------------------------+------------------------------------------------
 Reporter:  cizek at rcn.com  |        Owner:  ijr       
     Type:  patch          |       Status:  new       
 Priority:  minor          |    Milestone:  unknown   
Component:  mythtv         |      Version:  0.21-fixes
 Severity:  medium         |   Resolution:            
  Mlocked:  0              |  
---------------------------+------------------------------------------------

Comment(by cizek at rcn.com):

 I've tried attaching my patch but Trac called it spam.

 ...then I tried to paste it with the same effect...

 Here's the change:
 {{{
 -                    org_waud += amount;
 +                    org_waud = (org_waud + amount) % AUDBUFSIZE;


 ... and...

 -                        org_waud += nSamples * audio_bytes_per_sample;
 +                        org_waud = (org_waud + nSamples *
 audio_bytes_per_sample) % AUDBUFSIZE;
 }}}

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


More information about the mythtv-commits mailing list