tests: fix faad unit test for gst_caps_is_subset() fix in core
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 14 Feb 2013 10:40:36 +0000 (10:40 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 14 Feb 2013 10:40:36 +0000 (10:40 +0000)
Need to specify the stream-format.

tests/check/elements/faad.c

index 9840604..11bbb10 100644 (file)
@@ -161,6 +161,7 @@ GST_START_TEST (test_adts)
 
   buf = gst_buffer_append (header_buf, buf);
   caps = gst_caps_from_string (AAC_CAPS_STRING);
+  gst_caps_set_simple (caps, "stream-format", G_TYPE_STRING, "adts", NULL);
   do_test (buf, caps);
   gst_caps_unref (caps);
 }
@@ -181,7 +182,8 @@ GST_START_TEST (test_raw)
   buf = gst_buffer_new_and_alloc (size);
   gst_buffer_fill (buf, 0, raw_data_block, size);
   caps = gst_caps_from_string (AAC_CAPS_STRING);
-  gst_caps_set_simple (caps, "codec_data", GST_TYPE_BUFFER, codec_buf, NULL);
+  gst_caps_set_simple (caps, "stream-format", G_TYPE_STRING, "raw",
+      "codec_data", GST_TYPE_BUFFER, codec_buf, NULL);
   gst_buffer_unref (codec_buf);
 
   do_test (buf, caps);