From: Paul Brossier Date: Wed, 11 Feb 2015 12:33:18 +0000 (+0100) Subject: tests/src/io/test-source_apple_audio.c: improve examples X-Git-Tag: 0.4.2~40 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=afa3e1e4fdbd0f04c3813d32e6105432458b3082;p=aubio.git tests/src/io/test-source_apple_audio.c: improve examples --- diff --git a/tests/src/io/test-source_apple_audio.c b/tests/src/io/test-source_apple_audio.c index 47bde927..6d8ca8c7 100644 --- a/tests/src/io/test-source_apple_audio.c +++ b/tests/src/io/test-source_apple_audio.c @@ -16,10 +16,10 @@ int main (int argc, char **argv) PRINT_MSG("examples:\n"); PRINT_MSG(" - read file.wav at original samplerate\n"); PRINT_MSG(" %s file.wav\n", argv[0]); - PRINT_MSG(" - read file.wav at 32000Hz\n"); + PRINT_MSG(" - read file.aif at 32000Hz\n"); PRINT_MSG(" %s file.aif 32000\n", argv[0]); - PRINT_MSG(" - read file.wav at original samplerate with 4096 blocks\n"); - PRINT_MSG(" %s file.wav 0 4096 \n", argv[0]); + PRINT_MSG(" - read file.mp3 at original samplerate with 4096 blocks\n"); + PRINT_MSG(" %s file.mp3 0 4096 \n", argv[0]); return err; }