mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 05:20:48 +00:00
avfilter/avf_showcqt: use av_gettime_relative() instead of av_gettime()
av_gettime_relative() is using the monotonic clock therefore more suitable for relative time calculations. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
b69c91bbee
commit
84094f017e
@ -1133,11 +1133,11 @@ static int plot_cqt(AVFilterContext *ctx, AVFrame **frameout)
|
|||||||
int64_t last_time, cur_time;
|
int64_t last_time, cur_time;
|
||||||
|
|
||||||
#define UPDATE_TIME(t) \
|
#define UPDATE_TIME(t) \
|
||||||
cur_time = av_gettime(); \
|
cur_time = av_gettime_relative(); \
|
||||||
t += cur_time - last_time; \
|
t += cur_time - last_time; \
|
||||||
last_time = cur_time
|
last_time = cur_time
|
||||||
|
|
||||||
last_time = av_gettime();
|
last_time = av_gettime_relative();
|
||||||
|
|
||||||
memcpy(s->fft_result, s->fft_data, s->fft_len * sizeof(*s->fft_data));
|
memcpy(s->fft_result, s->fft_data, s->fft_len * sizeof(*s->fft_data));
|
||||||
if (s->attack_data) {
|
if (s->attack_data) {
|
||||||
|
Loading…
Reference in New Issue
Block a user