Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-11-26 12:04:17 +0300
committerSebastian Dröge <slomo@circular-chaos.org>2007-11-26 12:04:17 +0300
commit859e8028ab9ff6cef214ccee2ff41716a7882a8f (patch)
treef9989a4f8364829716333c44b6a4500ef7e73c3c /tests/check/elements/wavpackenc.c
parent848829798a049fc5cbe2560847c005b0aa84f135 (diff)
tests/check/elements/wavpackenc.c: Don't check the caps of the output buffer if they're equal some other caps. The ca...
Original commit message from CVS: * tests/check/elements/wavpackenc.c: (GST_START_TEST): Don't check the caps of the output buffer if they're equal some other caps. The caps can change in a backward compatible way and did at this point.
Diffstat (limited to 'tests/check/elements/wavpackenc.c')
-rw-r--r--tests/check/elements/wavpackenc.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/check/elements/wavpackenc.c b/tests/check/elements/wavpackenc.c
index a22d2ac8b..6a160faa8 100644
--- a/tests/check/elements/wavpackenc.c
+++ b/tests/check/elements/wavpackenc.c
@@ -141,11 +141,6 @@ GST_START_TEST (test_encode_silence)
fail_unless (memcmp (GST_BUFFER_DATA (outbuffer), "wvpk", 4) == 0,
"Failed to encode to valid Wavpack frames");
- caps = gst_caps_from_string (WAVPACK_CAPS_STRING);
- fail_unless (gst_caps_is_equal (caps, GST_BUFFER_CAPS (outbuffer)) == TRUE,
- "Wrong caps");
- gst_caps_unref (caps);
-
/* free all buffers */
num_buffers = g_list_length (buffers);