From 839ecf84ab65fc3c53bd595bb38a77d212dbdff2 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sat, 5 May 2018 09:40:57 +0200 Subject: [PATCH] aout: resamp_start_drift is an mtime_t value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Denis-Courmont --- src/audio_output/aout_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio_output/aout_internal.h b/src/audio_output/aout_internal.h index a960660afb..49e6e8e3b9 100644 --- a/src/audio_output/aout_internal.h +++ b/src/audio_output/aout_internal.h @@ -72,7 +72,7 @@ typedef struct { mtime_t end; /**< Last seen PTS */ float rate; /**< Play-out speed rate */ - unsigned resamp_start_drift; /**< Resampler drift absolute value */ + mtime_t resamp_start_drift; /**< Resampler drift absolute value */ int resamp_type; /**< Resampler mode (FIXME: redundant / resampling) */ bool discontinuity; } sync;