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;
|
||||
|
||||
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: {
|
||||
|
||||
Reference in New Issue
Block a user