Commit dc8cb0c3 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

quartz/tests: Add a test WAVE file.

parent 395f5271
......@@ -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"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment