Skip to content

Commit

Permalink
Help text: corrected raw options (#759)
Browse files Browse the repository at this point in the history
  • Loading branch information
H2Swine authored Nov 12, 2024
1 parent 5152c6c commit ecbac1f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/flac/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1410,14 +1410,13 @@ void show_help(void)
printf(" --force-aiff-c-none-format Decode to AIFF-C NONE format\n");
printf(" --force-aiff-c-sowt-format Decode to AIFF-C sowt format\n");
printf(" --force-raw-format Treat input or output as raw samples\n");
printf("raw format options: (all options mandatory for encoding from raw input,\n");
printf(" --sign and --endian are mandatory for decoding to raw output)\n");
printf(" --sign={signed|unsigned} Sign of samples\n");
printf(" --endian={big|little} Byte order for samples\n");
printf("raw format options:\n");
printf(" --sign={signed|unsigned} Sign of samples (input/output) \n");
printf(" --endian={big|little} Byte order for samples (input/output)\n");
printf(" --channels=# Number of channels in raw input\n");
printf(" --bps=# Number of bits per sample in raw input\n");
printf(" --sample-rate=# Sample rate in Hz in raw input\n");
printf(" --input-size=# Size of the raw input in bytes\n");
printf(" --input-size=# Size in bytes of raw input from stdin\n");
printf("\n");
printf("Analysis options:\n");
printf(" --residual-text Include residual signal in text output\n");
Expand Down

0 comments on commit ecbac1f

Please sign in to comment.