mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
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:
parent
19bee306fe
commit
0f4317db20
4 changed files with 15 additions and 0 deletions
|
@ -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>
|
2008-08-04 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
||||||
|
|
||||||
* gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
|
* gst/avi/gstavimux.c: (gst_avi_mux_riff_get_avi_header):
|
||||||
|
|
|
@ -30,3 +30,6 @@ REAL:
|
||||||
|
|
||||||
rtsp://211.89.225.1/encoder/cnr7_p
|
rtsp://211.89.225.1/encoder/cnr7_p
|
||||||
rtsp://stream2.visual.cz/broadcast/ct/CT24-High.rm
|
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
|
||||||
|
|
|
@ -367,6 +367,7 @@ test_taglib_id3mux_with_tags (GstTagList * tags, guint32 mask)
|
||||||
/* set up identity to catch tag buffer */
|
/* set up identity to catch tag buffer */
|
||||||
g_signal_connect (identity, "handoff", G_CALLBACK (identity_cb), &tagbuf);
|
g_signal_connect (identity, "handoff", G_CALLBACK (identity_cb), &tagbuf);
|
||||||
|
|
||||||
|
GST_LOG ("setting and getting state ...");
|
||||||
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||||
fail_unless (gst_element_get_state (pipeline, NULL, NULL,
|
fail_unless (gst_element_get_state (pipeline, NULL, NULL,
|
||||||
-1) == GST_STATE_CHANGE_SUCCESS);
|
-1) == GST_STATE_CHANGE_SUCCESS);
|
||||||
|
|
|
@ -176,6 +176,7 @@ GST_START_TEST (test_limiting)
|
||||||
|
|
||||||
/* Mutable variant. */
|
/* Mutable variant. */
|
||||||
buf = create_test_buffer ();
|
buf = create_test_buffer ();
|
||||||
|
GST_DEBUG ("push mutable buffer");
|
||||||
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
|
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
|
||||||
fail_unless (g_list_length (buffers) == 1);
|
fail_unless (g_list_length (buffers) == 1);
|
||||||
out_buf = buffers->data;
|
out_buf = buffers->data;
|
||||||
|
@ -188,6 +189,7 @@ GST_START_TEST (test_limiting)
|
||||||
/* Extra ref: */
|
/* Extra ref: */
|
||||||
gst_buffer_ref (buf);
|
gst_buffer_ref (buf);
|
||||||
ASSERT_BUFFER_REFCOUNT (buf, "buf", 2);
|
ASSERT_BUFFER_REFCOUNT (buf, "buf", 2);
|
||||||
|
GST_DEBUG ("push immutable buffer");
|
||||||
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
|
fail_unless (gst_pad_push (mysrcpad, buf) == GST_FLOW_OK);
|
||||||
ASSERT_BUFFER_REFCOUNT (buf, "buf", 1);
|
ASSERT_BUFFER_REFCOUNT (buf, "buf", 1);
|
||||||
fail_unless (g_list_length (buffers) == 2);
|
fail_unless (g_list_length (buffers) == 2);
|
||||||
|
|
Loading…
Reference in a new issue