wavpack: Fix unit tests, width is now called depth in the caps in 1.0

This commit is contained in:
Sebastian Dröge 2013-02-13 11:49:40 +01:00
parent 7d02a4dacb
commit 17513dae66
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ static GstBus *bus;
"rate = (int) 44100"
#define WAVPACK_CAPS_STRING "audio/x-wavpack, " \
"width = (int) 32, " \
"depth = (int) 32, " \
"channels = (int) 1, " \
"rate = (int) 44100, " \
"framed = (boolean) true"
@ -52,7 +52,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-wavpack, "
"width = (int) 32, "
"depth = (int) 32, "
"channels = (int) 1, "
"rate = (int) 44100, " "framed = (boolean) true"));

View File

@ -58,7 +58,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-wavpack, "
"width = (int) 16, "
"depth = (int) 16, "
"channels = (int) 1, "
"rate = (int) 44100, " "framed = (boolean) TRUE"));