Gentoo Archives: gentoo-commits

From: "Mart Raudsepp (leio)" <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gst-plugins-good/files: gst-plugins-good-1.4.5-rtp-test-fixes.patch
Date: Tue, 30 Dec 2014 21:46:49
Message-Id: 20141230214643.DAAE3E852@oystercatcher.gentoo.org
1 leio 14/12/30 21:46:43
2
3 Added: gst-plugins-good-1.4.5-rtp-test-fixes.patch
4 Log:
5 Version bump. Many updates since 1.2.x series as this is a many months overdue next stable cycle upgrade. Includes new rtpstreampay, rtpstreamdepay and rtprtx* RTP elements.
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 media-libs/gst-plugins-good/files/gst-plugins-good-1.4.5-rtp-test-fixes.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-good/files/gst-plugins-good-1.4.5-rtp-test-fixes.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gst-plugins-good/files/gst-plugins-good-1.4.5-rtp-test-fixes.patch?rev=1.1&content-type=text/plain
14
15 Index: gst-plugins-good-1.4.5-rtp-test-fixes.patch
16 ===================================================================
17 Upstream commits d416336 and d67da4c
18
19 diff --git a/tests/check/elements/rtpaux.c b/tests/check/elements/rtpaux.c
20 index 1f410bf..729604a 100644
21 --- a/tests/check/elements/rtpaux.c
22 +++ b/tests/check/elements/rtpaux.c
23 @@ -218,8 +218,8 @@ GST_START_TEST (test_simple_rtpbin_aux)
24 rtpbinsend = gst_element_factory_make ("rtpbin", "rtpbinsend");
25 g_object_set (rtpbinsend, "latency", 200, "do-retransmission", TRUE, NULL);
26 src = gst_element_factory_make ("audiotestsrc", "src");
27 - encoder = gst_element_factory_make ("speexenc", "encoder");
28 - rtppayloader = gst_element_factory_make ("rtpspeexpay", "rtppayloader");
29 + encoder = gst_element_factory_make ("alawenc", "encoder");
30 + rtppayloader = gst_element_factory_make ("rtppcmapay", "rtppayloader");
31 rtprtxsend = gst_element_factory_make ("rtprtxsend", "rtprtxsend");
32 sendrtp_udpsink = gst_element_factory_make ("udpsink", "sendrtp_udpsink");
33 g_object_set (sendrtp_udpsink, "host", "127.0.0.1", NULL);
34 @@ -238,7 +238,7 @@ GST_START_TEST (test_simple_rtpbin_aux)
35 g_object_set (recvrtp_udpsrc, "port", 5006, NULL);
36 rtpcaps =
37 gst_caps_from_string
38 - ("application/x-rtp,media=(string)audio,clock-rate=(int)8000,encoding-name=(string)SPEEX,encoding-params=(string)1,octet-align=(string)1");
39 + ("application/x-rtp,media=(string)audio,clock-rate=(int)8000,encoding-name=(string)PCMA,payload=(int)8");
40 g_object_set (recvrtp_udpsrc, "caps", rtpcaps, NULL);
41 gst_caps_unref (rtpcaps);
42 recvrtcp_udpsrc = gst_element_factory_make ("udpsrc", "recvrtcp_udpsrc");
43 @@ -249,8 +249,8 @@ GST_START_TEST (test_simple_rtpbin_aux)
44 g_object_set (recvrtcp_udpsink, "sync", FALSE, NULL);
45 g_object_set (recvrtcp_udpsink, "async", FALSE, NULL);
46 rtprtxreceive = gst_element_factory_make ("rtprtxreceive", "rtprtxreceive");
47 - rtpdepayloader = gst_element_factory_make ("rtpspeexdepay", "rtpdepayloader");
48 - decoder = gst_element_factory_make ("speexdec", "decoder");
49 + rtpdepayloader = gst_element_factory_make ("rtppcmadepay", "rtpdepayloader");
50 + decoder = gst_element_factory_make ("alawdec", "decoder");
51 converter = gst_element_factory_make ("identity", "converter");
52 sink = gst_element_factory_make ("fakesink", "sink");
53 g_object_set (sink, "sync", TRUE, NULL);
54 diff --git a/tests/check/elements/rtpcollision.c b/tests/check/elements/rtpcollision.c
55 index e9528f9..16f665f 100644
56 --- a/tests/check/elements/rtpcollision.c
57 +++ b/tests/check/elements/rtpcollision.c
58 @@ -156,7 +156,7 @@ fake_udp_sink_chain_func (GstPad * pad, GstObject * parent, GstBuffer * buffer)
59 return GST_FLOW_OK;
60 }
61
62 -/* This test build the pipeline audiotestsrc ! speexenc ! rtpspeexpay ! \
63 +/* This test build the pipeline audiotestsrc ! alawenc ! rtppcmapay ! \
64 * rtpsession ! fakesink
65 * It manually pushs buffer into rtpsession with same ssrc but different
66 * ip so that collision can be detected
67 @@ -186,9 +186,9 @@ GST_START_TEST (test_master_ssrc_collision)
68
69 src = gst_element_factory_make ("audiotestsrc", "src");
70 g_object_set (src, "num-buffers", 5, NULL);
71 - encoder = gst_element_factory_make ("speexenc", NULL);
72 - rtppayloader = gst_element_factory_make ("rtpspeexpay", NULL);
73 - g_object_set (rtppayloader, "pt", 96, NULL);
74 + encoder = gst_element_factory_make ("alawenc", NULL);
75 + rtppayloader = gst_element_factory_make ("rtppcmapay", NULL);
76 + g_object_set (rtppayloader, "pt", 8, NULL);
77 rtpsession = gst_element_factory_make ("rtpsession", NULL);
78 sink = gst_element_factory_make ("fakesink", "sink");
79 gst_bin_add_many (GST_BIN (bin), src, encoder, rtppayloader,
80 @@ -261,7 +261,7 @@ GST_START_TEST (test_master_ssrc_collision)
81 gst_object_unref (bin);
82
83 /* check results */
84 - fail_unless_equals_int (nb_ssrc_changes, 7);
85 + fail_unless_equals_int (nb_ssrc_changes, 4);
86 }
87
88 GST_END_TEST;
89 @@ -325,7 +325,7 @@ rtpsession_sinkpad_probe2 (GstPad * pad, GstPadProbeInfo * info,
90 return ret;
91 }
92
93 -/* This test build the pipeline audiotestsrc ! speexenc ! rtpspeexpay ! \
94 +/* This test build the pipeline audiotestsrc ! alawenc ! rtppcmapay ! \
95 * rtprtxsend ! rtpsession ! fakesink
96 * It manually pushs buffer into rtpsession with same ssrc than rtx stream
97 * but different ip so that collision can be detected
98 @@ -355,12 +355,12 @@ GST_START_TEST (test_rtx_ssrc_collision)
99
100 src = gst_element_factory_make ("audiotestsrc", "src");
101 g_object_set (src, "num-buffers", 5, NULL);
102 - encoder = gst_element_factory_make ("speexenc", NULL);
103 - rtppayloader = gst_element_factory_make ("rtpspeexpay", NULL);
104 - g_object_set (rtppayloader, "pt", 96, NULL);
105 + encoder = gst_element_factory_make ("alawenc", NULL);
106 + rtppayloader = gst_element_factory_make ("rtppcmapay", NULL);
107 + g_object_set (rtppayloader, "pt", 8, NULL);
108 rtprtxsend = gst_element_factory_make ("rtprtxsend", NULL);
109 pt_map = gst_structure_new ("application/x-rtp-pt-map",
110 - "96", G_TYPE_UINT, 99, NULL);
111 + "8", G_TYPE_UINT, 99, NULL);
112 g_object_set (rtprtxsend, "payload-type-map", pt_map, NULL);
113 gst_structure_free (pt_map);
114 rtpsession = gst_element_factory_make ("rtpsession", NULL);