gst/rtsp/URLS: Add another URL.

Original commit message from CVS:
* gst/rtsp/URLS:
Add another URL.
* tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
* tests/check/elements/rglimiter.c: (GST_START_TEST):
Add some more debug info.
This commit is contained in:
Wim Taymans 2008-08-05 08:43:45 +00:00
parent 19bee306fe
commit 0f4317db20
4 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2008-08-05 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/rtsp/URLS:
Add another URL.
* tests/check/elements/id3v2mux.c: (test_taglib_id3mux_with_tags):
* tests/check/elements/rglimiter.c: (GST_START_TEST):
Add some more debug info.
2008-08-04 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
* gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):

View file

@ -30,3 +30,6 @@ REAL:
rtsp://211.89.225.1/encoder/cnr7_p
rtsp://stream2.visual.cz/broadcast/ct/CT24-High.rm
AAC, interleaved:
rtsp://ia300135.us.archive.org:554/0/items/uncovered_interviews/uncovered_interviews_3_256kb.mp4

View file

@ -367,6 +367,7 @@ test_taglib_id3mux_with_tags (GstTagList * tags, guint32 mask)
/* set up identity to catch tag buffer */
g_signal_connect (identity, "handoff", G_CALLBACK (identity_cb), &tagbuf);
GST_LOG ("setting and getting state ...");
gst_element_set_state (pipeline, GST_STATE_PLAYING);
fail_unless (gst_element_get_state (pipeline, NULL, NULL,
-1) == GST_STATE_CHANGE_SUCCESS);

View file

@ -176,6 +176,7 @@ GST_START_TEST (test_limiting)
/* Mutable variant. */
buf = create_test_buffer ();
GST_DEBUG ("push mutable buffer");
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
fail_unless (g_list_length (buffers) == 1);
out_buf = buffers->data;
@ -188,6 +189,7 @@ GST_START_TEST (test_limiting)
/* Extra ref: */
gst_buffer_ref (buf);
ASSERT_BUFFER_REFCOUNT (buf, "buf", 2);
GST_DEBUG ("push immutable buffer");
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
ASSERT_BUFFER_REFCOUNT (buf, "buf", 1);
fail_unless (g_list_length (buffers) == 2);