Fix bug: PTS are 1/90ms and use AudioVideoDelay.

This commit is contained in:
Johns 2012-04-30 13:56:26 +02:00
parent 0cf110da81
commit 49ae1c7211
1 changed files with 1 additions and 1 deletions

View File

@ -3732,7 +3732,7 @@ void AudioVideoReady(int64_t pts)
int skip;
// keep ~5 frames
skip = pts - 5 * 20 - audio_pts;
skip = pts - 5 * 20 * 90 - audio_pts - VideoAudioDelay;
if (skip > 0) {
skip = (((int64_t) skip * AudioRing[AudioRingWrite].HwSampleRate)
/ (1000 * 90))