summaryrefslogtreecommitdiff
path: root/multimedia/gst-plugins1-good/patches
diff options
context:
space:
mode:
authorwiz <wiz>2016-09-12 09:00:09 +0000
committerwiz <wiz>2016-09-12 09:00:09 +0000
commitfc3fa760b654563e3b164fa19cea884b6f1560f4 (patch)
treed3688e36b23a9f349cea414b5e4f8bdb4ca4b8e4 /multimedia/gst-plugins1-good/patches
parent8e0d3e82b61308d74af1caa9586d867a6da760e2 (diff)
downloadpkgsrc-fc3fa760b654563e3b164fa19cea884b6f1560f4.tar.gz
Update gstreamer1 and its plugins to 1.8.3.
1.8.3 The third 1.8 bug-fix release (1.8.3) was released on 19 August 2016. This release only contains bugfixes and it should be safe to update from 1.8.x. Major bugfixes in 1.8.3 Fix Android build scripts on OS X and Windows Fix stepping in PAUSED state in certain circumstances Fix jackaudiosink hang when exiting Fix udpsrc receiving multicast packets not only from the selected multicast group Fix unnecessary decoding of unselected streams in GES Fix (multi)udpsink randomly not sending to clients Fix ALL_BOTH probes not considering EVENT_FLUSH Fix average input rate calculations in queue2 Fix various locking issues causing deadlock in adaptivedemux Fix gst-libav encoders to correctly produce codec_data in caps Add Wayland, Windows and Rasberry Pi support to the QML GL video sink Add support for building with OpenH264 1.6 Add support for controlling deinterlacing in GES video sources ... and many, many more! For a full list of bugfixes see Bugzilla. Note that this is not the full list of changes. For the full list of changes please refer to the GIT logs or ChangeLogs of the particular modules. Known Issues gst-rtsp-server does not take address pool configuration into account for sending unicast UDP. Bugzilla #766612 vp8enc crashes on 32 bit Windows, but was working fine in 1.6. 64 bit Windows is unaffected. Bugzilla #763663
Diffstat (limited to 'multimedia/gst-plugins1-good/patches')
-rw-r--r--multimedia/gst-plugins1-good/patches/patch-gst_udp_gstudpsrc.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/multimedia/gst-plugins1-good/patches/patch-gst_udp_gstudpsrc.c b/multimedia/gst-plugins1-good/patches/patch-gst_udp_gstudpsrc.c
new file mode 100644
index 00000000000..51c7ce72fa0
--- /dev/null
+++ b/multimedia/gst-plugins1-good/patches/patch-gst_udp_gstudpsrc.c
@@ -0,0 +1,15 @@
+$NetBSD: patch-gst_udp_gstudpsrc.c,v 1.1 2016/09/12 09:00:10 wiz Exp $
+
+--- gst/udp/gstudpsrc.c.orig 2016-07-11 06:19:14.000000000 +0000
++++ gst/udp/gstudpsrc.c
+@@ -202,8 +202,10 @@ gst_ip_pktinfo_message_deserialize (gint
+ message = g_object_new (GST_TYPE_IP_PKTINFO_MESSAGE, NULL);
+ message->ifindex = pktinfo->ipi_ifindex;
+ #ifndef G_OS_WIN32
++#ifndef __NetBSD__
+ message->spec_dst = pktinfo->ipi_spec_dst;
+ #endif
++#endif
+ message->addr = pktinfo->ipi_addr;
+
+ return G_SOCKET_CONTROL_MESSAGE (message);