Hello community,

here is the log from the commit of package vlc for openSUSE:Factory checked in 
at 2020-11-13 18:52:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vlc (Old)
 and      /work/SRC/openSUSE:Factory/.vlc.new.24930 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vlc"

Fri Nov 13 18:52:41 2020 rev:111 rq:847296 version:3.0.11.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/vlc/vlc.changes  2020-10-03 18:52:15.321248557 
+0200
+++ /work/SRC/openSUSE:Factory/.vlc.new.24930/vlc.changes       2020-11-13 
18:52:48.197695042 +0100
@@ -1,0 +2,6 @@
+Sat Oct 24 22:10:26 UTC 2020 - Thomas Williams <[email protected]>
+
+- vlc-srto_tsbpddelay.patch
+ * Fix building with recent srt where SRTO_TSBPDDELAY is no longer defined
+
+-------------------------------------------------------------------

New:
----
  vlc-srto_tsbpddelay.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ vlc.spec ++++++
--- /var/tmp/diff_new_pack.ejoxwh/_old  2020-11-13 18:52:49.449696365 +0100
+++ /var/tmp/diff_new_pack.ejoxwh/_new  2020-11-13 18:52:49.453696370 +0100
@@ -57,6 +57,8 @@
 Patch103:       0001-Port-OpenCV-facedetect-example-to-C-API.patch
 # PATCH-FIX-UPSTREAM -- Fix building with Qt 5.15 by adding a missing include
 Patch104:       fix-missing-includes-with-qt-5.15.patch
+# Fix building against recent srt where SRTO_TSBPDDELAY is no longer defined
+Patch105:       vlc-srto_tsbpddelay.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  aalib-devel
 BuildRequires:  alsa-devel >= 1.0.24
@@ -403,6 +405,7 @@
 %endif
 %patch103 -p1
 %patch104 -p1
+%patch105 -p1
 
 ### And LUA 5.3.1 has some more API changes
 if pkg-config --atleast-version 5.3.1 lua; then


++++++ vlc-srto_tsbpddelay.patch ++++++
diff -ruN vlc-3.0.11.1/modules/access/srt.c 
vlc-3.0.11.1-srto_tsbpddelay/modules/access/srt.c
--- vlc-3.0.11.1/modules/access/srt.c   2018-04-23 04:03:39.000000000 -0400
+++ vlc-3.0.11.1-srto_tsbpddelay/modules/access/srt.c   2020-10-24 
16:45:10.490850358 -0400
@@ -165,7 +165,7 @@
 
     /* Set latency */
     i_latency = var_InheritInteger( p_stream, "latency" );
-    srt_setsockopt( p_sys->sock, 0, SRTO_TSBPDDELAY,
+    srt_setsockopt( p_sys->sock, 0, SRTO_LATENCY,
         &i_latency, sizeof( int ) );
 
     psz_passphrase = var_InheritString( p_stream, "passphrase" );
diff -ruN vlc-3.0.11.1/modules/access_output/srt.c 
vlc-3.0.11.1-srto_tsbpddelay/modules/access_output/srt.c
--- vlc-3.0.11.1/modules/access_output/srt.c    2018-04-06 05:22:51.000000000 
-0400
+++ vlc-3.0.11.1-srto_tsbpddelay/modules/access_output/srt.c    2020-10-24 
16:45:10.490850358 -0400
@@ -162,7 +162,7 @@
 
     /* Set latency */
     i_latency = var_InheritInteger( p_access, "latency" );
-    srt_setsockopt( p_sys->sock, 0, SRTO_TSBPDDELAY,
+    srt_setsockopt( p_sys->sock, 0, SRTO_LATENCY,
         &i_latency, sizeof( int ) );
 
     if ( psz_passphrase != NULL && psz_passphrase[0] != '\0')
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/[email protected]

Reply via email to