diff --git a/ao-play-async/ao_playasync.c b/ao-play-async/ao_playasync.c index 9557eef..fdb4e7d 100644 --- a/ao-play-async/ao_playasync.c +++ b/ao-play-async/ao_playasync.c @@ -341,8 +341,6 @@ void ao_play_async(void *ao_handle, double at_second, double music_duration, int { AO_Handle *h = (AO_Handle *) ao_handle; - fprintf(stderr, "ao_play_async: %lf %lf %d %d\n", at_second, music_duration, buf_size, info.type); - Queue_t *q = NULL; switch(info.type) { @@ -351,7 +349,6 @@ void ao_play_async(void *ao_handle, double at_second, double music_duration, int void *store_mem = convertFlac(mem, buf_size, &info, &store_size); q = new_elem(PLAY, at_second, music_duration, store_size, store_mem); free(store_mem); - fprintf(stderr, "flac made\n"); } break; case ao: { diff --git a/ao-play-async/ao_playasync.h b/ao-play-async/ao_playasync.h index a0b69d0..872b7a6 100644 --- a/ao-play-async/ao_playasync.h +++ b/ao-play-async/ao_playasync.h @@ -11,7 +11,7 @@ #define AOPLAYASYNC_EXPORT extern #endif -#define VERSION 1 +#define VERSION 2 typedef enum { ao = 1, diff --git a/lib/linux-x86_64.zip b/lib/linux-x86_64.zip index 541413f..01e7efd 100644 Binary files a/lib/linux-x86_64.zip and b/lib/linux-x86_64.zip differ