summaryrefslogtreecommitdiff
path: root/tests/check/pipelines
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-01-30 17:16:17 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-09-11 01:54:44 +0100
commitf6cab316ccad4dab9cc2b0dc5baab8323d060f91 (patch)
treec3347c85b0ccf9f6e820ea7a9e3ffc2528f0a302 /tests/check/pipelines
parent33344dc2b9724408a7440602bd3b6a06a5e951b2 (diff)
downloadgstreamer-plugins-bad-f6cab316ccad4dab9cc2b0dc5baab8323d060f91.tar.gz
update for HEADER flag changes
Diffstat (limited to 'tests/check/pipelines')
-rw-r--r--tests/check/pipelines/streamheader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/check/pipelines/streamheader.c b/tests/check/pipelines/streamheader.c
index 69dc29ae2..77e998c1c 100644
--- a/tests/check/pipelines/streamheader.c
+++ b/tests/check/pipelines/streamheader.c
@@ -134,7 +134,7 @@ buffer_probe_cb (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
gst_buffer_map (buffer, &map, GST_MAP_READ);
- if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_IN_CAPS)) {
+ if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_HEADER)) {
GstCaps *caps;
GstStructure *s;
const GValue *sh;
@@ -168,7 +168,7 @@ buffer_probe_cb (GstPad * pad, GstPadProbeInfo * info, gpointer user_data)
}
gst_buffer_unmap (buf, &map2);
}
- fail_unless (found, "Did not find incoming IN_CAPS buffer %p on caps",
+ fail_unless (found, "Did not find incoming HEADER buffer %p on caps",
buffer);
gst_caps_unref (caps);