mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Fix some apparent +- errors in the audio vissualization.
The bugs become only vissible at higher time resolution than what is used currently. Originally committed as revision 22442 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
86decad652
commit
122dcdcb31
4
ffplay.c
4
ffplay.c
@ -828,10 +828,10 @@ static void video_audio_display(VideoState *s)
|
||||
the last buffer computation */
|
||||
if (audio_callback_time) {
|
||||
time_diff = av_gettime() - audio_callback_time;
|
||||
delay += (time_diff * s->audio_st->codec->sample_rate) / 1000000;
|
||||
delay -= (time_diff * s->audio_st->codec->sample_rate) / 1000000;
|
||||
}
|
||||
|
||||
delay -= data_used / 2;
|
||||
delay += 2*data_used;
|
||||
if (delay < data_used)
|
||||
delay = data_used;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user