mxfdemux: Fix event handling in unit test

This commit is contained in:
Sebastian Dröge 2013-05-15 11:31:14 +02:00
parent 167e11b176
commit 14cd3a0dc4

View file

@ -237,6 +237,7 @@ GST_START_TEST (test_push)
GstElement *mxfdemux;
GstBuffer *buffer;
GstPad *sinkpad;
GstCaps *caps;
have_data = FALSE;
have_eos = FALSE;
@ -263,6 +264,10 @@ GST_START_TEST (test_push)
gst_pad_set_active (mysinkpad, TRUE);
gst_pad_set_active (mysrcpad, TRUE);
caps = gst_caps_new_empty_simple ("application/mxf");
gst_check_setup_events (mysrcpad, mxfdemux, caps, GST_FORMAT_BYTES);
gst_caps_unref (caps);
gst_element_set_state (mxfdemux, GST_STATE_PLAYING);
fail_unless (gst_pad_push (mysrcpad, buffer) == GST_FLOW_OK);