mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
tests/tiny_psnr: Print information about the supported sample types in the help and error texts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
63dbba655e
commit
e03c3ac539
@ -287,14 +287,14 @@ int main(int argc, char *argv[])
|
|||||||
char *end;
|
char *end;
|
||||||
len = strtol(argv[3], &end, 0);
|
len = strtol(argv[3], &end, 0);
|
||||||
if (*end || len < 1 || len > 2) {
|
if (*end || len < 1 || len > 2) {
|
||||||
fprintf(stderr, "Unsupported sample format: %s\n", argv[3]);
|
fprintf(stderr, "Unsupported sample format: %s\nSupported: u8, s16, f32, f64\n", argv[3]);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argc < 3) {
|
if (argc < 3) {
|
||||||
printf("tiny_psnr <file1> <file2> [<elem size> [<shift> [<skip bytes> [<shift search range>]]]]\n");
|
printf("tiny_psnr <file1> <file2> [<elem size>|u8|s16|f32|f64 [<shift> [<skip bytes> [<shift search range>]]]]\n");
|
||||||
printf("WAV headers are skipped automatically.\n");
|
printf("WAV headers are skipped automatically.\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user