removed fprintf stderrs

This commit is contained in:
2026-04-10 08:40:18 +02:00
parent be4f0ff9dd
commit 6bcb2702a9
3 changed files with 1 additions and 4 deletions

View File

@@ -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: {

View File

@@ -11,7 +11,7 @@
#define AOPLAYASYNC_EXPORT extern
#endif
#define VERSION 1
#define VERSION 2
typedef enum {
ao = 1,