From: Sebastian Dröge Date: Wed, 13 Feb 2013 10:49:40 +0000 (+0100) Subject: wavpack: Fix unit tests, width is now called depth in the caps in 1.0 X-Git-Tag: 1.19.3~509^2~6062 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=17513dae663503fbae8f111fec1460cbcef79487;p=platform%2Fupstream%2Fgstreamer.git wavpack: Fix unit tests, width is now called depth in the caps in 1.0 --- diff --git a/tests/check/elements/wavpackenc.c b/tests/check/elements/wavpackenc.c index 2f38dce..22e2e7c 100644 --- a/tests/check/elements/wavpackenc.c +++ b/tests/check/elements/wavpackenc.c @@ -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")); diff --git a/tests/check/elements/wavpackparse.c b/tests/check/elements/wavpackparse.c index 220e153..6e34e3f 100644 --- a/tests/check/elements/wavpackparse.c +++ b/tests/check/elements/wavpackparse.c @@ -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"));