quartz/tests: Add a test WAVE file.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
395f5271cc
commit
dc8cb0c370
|
@ -42,6 +42,7 @@ typedef struct TestFilterImpl
|
|||
static const WCHAR avifile[] = {'t','e','s','t','.','a','v','i',0};
|
||||
static const WCHAR mpegfile[] = {'t','e','s','t','.','m','p','g',0};
|
||||
static const WCHAR mp3file[] = {'t','e','s','t','.','m','p','3',0};
|
||||
static const WCHAR wavefile[] = {'t','e','s','t','.','w','a','v',0};
|
||||
|
||||
static WCHAR *load_resource(const WCHAR *name)
|
||||
{
|
||||
|
@ -3215,6 +3216,7 @@ START_TEST(filtergraph)
|
|||
test_render_run(avifile, FALSE, TRUE);
|
||||
test_render_run(mpegfile, TRUE, TRUE);
|
||||
test_render_run(mp3file, TRUE, FALSE);
|
||||
test_render_run(wavefile, TRUE, FALSE);
|
||||
test_enum_filters();
|
||||
test_graph_builder_render();
|
||||
test_graph_builder_connect();
|
||||
|
|
|
@ -31,3 +31,7 @@ test.mpg RCDATA "test.mpg"
|
|||
/* ffmpeg -f lavfi -i "sine=frequency=500" -t 0.5 -ar 48000 -b:a 32k -f mp3 -acodec mp3 test.mp3 */
|
||||
/* @makedep: test.mp3 */
|
||||
test.mp3 RCDATA "test.mp3"
|
||||
|
||||
/* ffmpeg -f lavfi -i "sine=frequency=600" -t 0.1 -ar 44100 -f wav -acodec pcm_u8 test.wav */
|
||||
/* @makedep: test.wav */
|
||||
test.wav RCDATA "test.wav"
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue