# HG changeset patch # User al3x # Date 992431100 0 # Node ID 2cd5ab1bee75bf9c774dce6676618a262f2c3ce4 # Parent c8c8aead50756bff6aefef033e117dcaf870ed0e audio_format_out_name update diff -r c8c8aead5075 -r 2cd5ab1bee75 libao2/audio_out.c --- a/libao2/audio_out.c Wed Jun 13 00:50:21 2001 +0000 +++ b/libao2/audio_out.c Wed Jun 13 11:18:20 2001 +0000 @@ -64,11 +64,12 @@ { switch (format) { -/* case AFMT_MU_LAW: + return("Mu-Law"); case AFMT_A_LAW: + return("A-Law"); case AFMT_IMA_ADPCM: -*/ + return("Ima-ADPCM"); case AFMT_S8: return("Signed 8-bit"); case AFMT_U8: @@ -83,8 +84,10 @@ return("Unsigned 16-bit (Big-Endian)"); case AFMT_MPEG: return("MPEG (2) audio"); - // the following two formats are not available with old linux kernel - // headers (e.g. in 2.2.16) +/* + the following two formats are not available with old linux kernel + headers (e.g. in 2.2.16) +*/ #ifdef AFMT_S32_LE case AFMT_S32_LE: return("Signed 32-bit (Little-Endian)");