From 29689fa3f841fd198bf47eec974c7acd399a3b2a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ond=C5=99ej=20Svoboda?= <ondrej@svobodasoft.cz>
Date: Fri, 29 Aug 2014 22:30:30 +0200
Subject: [PATCH 1/2] Support seeking with milisecond precision.

---
 audio.c | 2 +-
 audio.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/audio.c b/audio.c
index 6bf4f55..69f6067 100644
--- a/audio.c
+++ b/audio.c
@@ -1009,7 +1009,7 @@ void audio_seek (const int sec)
 		logit ("Seeking when nothing is played.");
 }

-void audio_jump_to (const int sec)
+void audio_jump_to (const float sec)
 {
 	int playing;

diff --git a/audio.h b/audio.h
index 2c23187..c593eb3 100644
--- a/audio.h
+++ b/audio.h
@@ -229,7 +229,7 @@ void audio_unpause ();
 void audio_initialize ();
 void audio_exit ();
 void audio_seek (const int sec);
-void audio_jump_to (const int sec);
+void audio_jump_to (const float sec);

 int audio_open (struct sound_params *sound_params);
 int audio_send_buf (const char *buf, const size_t size);
--
2.23.0

