From: Josh Coalson Date: Mon, 19 May 2003 01:22:12 +0000 (+0000) Subject: change default extension for AIFF from .aiff to .aif X-Git-Tag: 1.2.0~1091 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f88dc25dfd377d4b0dd33c1b51159162fcfb92d;p=platform%2Fupstream%2Fflac.git change default extension for AIFF from .aiff to .aif --- diff --git a/src/flac/main.c b/src/flac/main.c index fb4398d..1f73bb5 100644 --- a/src/flac/main.c +++ b/src/flac/main.c @@ -1334,9 +1334,9 @@ void show_explain() printf(" --sign={signed|unsigned} Sign of samples (the default is signed)\n"); printf(" --force-aiff-format Force the decoder to output AIFF format. This\n"); printf(" option is not needed if the output filename (as\n"); - printf(" set by -o) ends with .aiff; this option has no\n"); - printf(" effect when encoding since input AIFF is auto-\n"); - printf(" detected.\n"); + printf(" set by -o) ends with .aif or .aiff; this option\n"); + printf(" has no effect when encoding since input AIFF is\n"); + printf(" auto-detected.\n"); printf(" --force-raw-format Force input (when encoding) or output (when\n"); printf(" decoding) to be treated as raw samples\n"); printf("negative options:\n"); @@ -1633,7 +1633,7 @@ const char *get_decoded_outfilename(const char *infilename) strcpy(buffer, "-"); } else { - static const char *suffixes[] = { ".wav", ".aiff", ".raw", ".ana" }; + static const char *suffixes[] = { ".wav", ".aif", ".raw", ".ana" }; const char *suffix = suffixes[ option_values.analyze? 3 : option_values.force_raw_format? 2 :