utils: Remove spice_get_monotonic_time_ms

This is a thin wrapper over g_get_monotonic_time_ms, and is called only
once, so we can call directly g_get_monotonic_time_ms instead.

Signed-off-by: Christophe Fergeau <cfergeau@redhat.com>
Acked-by: Frediano Ziglio <fziglio@redhat.com>
This commit is contained in:
Christophe Fergeau 2018-10-04 17:29:28 +02:00
parent 8b5543dc6a
commit f84b26f801
2 changed files with 1 additions and 6 deletions

View File

@ -3004,7 +3004,7 @@ static void migrate_timeout(void *opaque)
uint32_t reds_get_mm_time(void)
{
return spice_get_monotonic_time_ms();
return g_get_monotonic_time() / 1000;
}
void reds_enable_mm_time(RedsState *reds)

View File

@ -66,11 +66,6 @@ static inline red_time_t spice_get_monotonic_time_ns(void)
#define MSEC_PER_SEC 1000
static inline red_time_t spice_get_monotonic_time_ms(void)
{
return g_get_monotonic_time() / 1000;
}
int rgb32_data_has_alpha(int width, int height, size_t stride,
const uint8_t *data, int *all_set_out);