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

Mark Spieth mark at digivation.com.au
Wed Mar 26 05:38:30 UTC 2008


> 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;
> }}}

good find. I must have been on drugs :)
note you can always attach if you compress the patch.

mark


More information about the mythtv-dev mailing list