X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=ao_write.c;h=447dea84c00a468330fe8229bfd70b74292264bd;hp=4258803fcc996def34856262f476c64c5a611949;hb=ba83a291cd486e8ab53ac64d81b17d8f5705d715;hpb=e5de57de1b8bf1df96c152fc92f5a49f75d6d96c diff --git a/ao_write.c b/ao_write.c index 4258803f..447dea84 100644 --- a/ao_write.c +++ b/ao_write.c @@ -87,7 +87,7 @@ static int aow_set_sample_format(unsigned sample_rate, unsigned channels, case SF_U8: case SF_U16_LE: case SF_U16_BE: - return -E_AO_BAD_SAMPLE_FORMAT; + return -E_BAD_SAMPLE_FORMAT; case SF_S8: /* no need to set byte_format */ result->bits = 8; @@ -159,8 +159,8 @@ static void aow_show_drivers(void) if (info->type == AO_TYPE_FILE) continue; - PARA_DEBUG_LOG("%s: %s", info->short_name, info->name); - PARA_DEBUG_LOG("priority: %d", info->priority); + PARA_DEBUG_LOG("name: %s: %s\n", info->short_name, info->name); + PARA_DEBUG_LOG("priority: %d\n", info->priority); for (j = 0; j < info->option_count; j++) { tmp = make_message("%s%s%s", keys? keys : "", keys? ", " : "", @@ -168,9 +168,9 @@ static void aow_show_drivers(void) free(keys); keys = tmp; } - PARA_DEBUG_LOG("keys: %s", keys? keys : "[none]"); + PARA_DEBUG_LOG("keys: %s\n", keys? keys : "[none]"); free(keys); - PARA_DEBUG_LOG("comment: %s", info->comment? + PARA_DEBUG_LOG("comment: %s\n", info->comment? info->comment : "[none]"); } } @@ -244,7 +244,7 @@ fail: return ret; } -__noreturn static void *aow_play(void *priv) +static void *aow_play(void *priv) { struct writer_node *wn = priv; struct private_aow_data *pawd = wn->private_data;