removed fprintf stderrs
This commit is contained in:
@@ -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;
|
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;
|
Queue_t *q = NULL;
|
||||||
|
|
||||||
switch(info.type) {
|
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);
|
void *store_mem = convertFlac(mem, buf_size, &info, &store_size);
|
||||||
q = new_elem(PLAY, at_second, music_duration, store_size, store_mem);
|
q = new_elem(PLAY, at_second, music_duration, store_size, store_mem);
|
||||||
free(store_mem);
|
free(store_mem);
|
||||||
fprintf(stderr, "flac made\n");
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case ao: {
|
case ao: {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
#define AOPLAYASYNC_EXPORT extern
|
#define AOPLAYASYNC_EXPORT extern
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION 1
|
#define VERSION 2
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ao = 1,
|
ao = 1,
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user