public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/xine-lib] epel9-next: * Wed Apr  9 2008 Ville Skyttä <ville.skytta at iki.fi>
Date: Mon, 20 Jul 2026 20:00:32 GMT	[thread overview]
Message-ID: <178457763297.1.4636395303573732529.rpms-xine-lib-386e299c4adf@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/xine-lib
            Branch : epel9-next
            Commit : 386e299c4adf4e4d4c11ec50336924783119973e
            Author : Ville Skyttä <scop@fedoraproject.org>
            Date   : 2008-04-09T19:36:16+00:00
            Stats  : +54/-2 in 3 file(s)
            URL    : https://src.fedoraproject.org/rpms/xine-lib/c/386e299c4adf4e4d4c11ec50336924783119973e?branch=epel9-next

            Log:
            * Wed Apr  9 2008 Ville Skyttä <ville.skytta at iki.fi>
- Apply upstream fixes for Quicktime (#441705) and Matroska regressions
  introduced in 1.1.11.1.

---
diff --git a/xine-lib-1.1.11.1-mkv.patch b/xine-lib-1.1.11.1-mkv.patch
new file mode 100644
index 0000000..c835db1
--- /dev/null
+++ b/xine-lib-1.1.11.1-mkv.patch
@@ -0,0 +1,21 @@
+
+# HG changeset patch
+# User Darren Salt <linux@youmustbejoking.demon.co.uk>
+# Date 1207353205 -3600
+# Node ID ff20b8db74eabc74b7b95da4c1b44fc5d7f2ec8c
+# Parent 05ebc886fd30158b59a26e03cf2f6f3a52114b24
+Fix a regression in the Matroska demuxer.
+One '&'...
+
+--- a/src/demuxers/ebml.c	Fri Apr 04 18:35:33 2008 +0100
++++ b/src/demuxers/ebml.c	Sat Apr 05 00:53:25 2008 +0100
+@@ -327,7 +327,7 @@ char *ebml_alloc_read_ascii (ebml_parser
+   if (text)
+   {
+     text[elem->len] = '\0';
+-    if (ebml_read_ascii (ebml, &elem, text))
++    if (ebml_read_ascii (ebml, elem, text))
+       return text;
+     free (text);
+   }
+

diff --git a/xine-lib-1.1.11.1-qt.patch b/xine-lib-1.1.11.1-qt.patch
new file mode 100644
index 0000000..54a9c67
--- /dev/null
+++ b/xine-lib-1.1.11.1-qt.patch
@@ -0,0 +1,23 @@
+
+# HG changeset patch
+# User Darren Salt <linux@youmustbejoking.demon.co.uk>
+# Date 1206976103 -3600
+# Node ID d8e1305c13820b82d896f7bc77d196b9c9645dd6
+# Parent 2cc583bdc498fd6c95b8a21c10e81a0cef4d63c6
+Revert a change which broke Quicktime atom parsing.
+
+--- a/src/demuxers/demux_qt.c	Sun Mar 30 19:48:58 2008 +0100
++++ b/src/demuxers/demux_qt.c	Mon Mar 31 16:08:23 2008 +0100
+@@ -895,11 +895,6 @@ static qt_error parse_trak_atom (qt_trak
+   for (i = ATOM_PREAMBLE_SIZE; i < trak_atom_size - 4; i++) {
+     current_atom_size = _X_BE_32(&trak_atom[i - 4]);	
+     current_atom = _X_BE_32(&trak_atom[i]);
+-
+-    if (current_atom_size > trak_atom_size - i) {
+-      last_error = QT_NOT_A_VALID_FILE;
+-      goto free_trak;
+-    }
+ 
+     if (current_atom == TKHD_ATOM) {
+       trak->flags = _X_BE_16(&trak_atom[i + 6]);
+

diff --git a/xine-lib.spec b/xine-lib.spec
index a16b152..eb41b78 100644
--- a/xine-lib.spec
+++ b/xine-lib.spec
@@ -32,7 +32,7 @@
 Summary:        Xine library
 Name:           xine-lib
 Version:        1.1.11.1
-Release:        2%{?dist}
+Release:        3%{?dist}
 License:        GPLv2+
 Group:          System Environment/Libraries
 URL:            http://xinehq.de/
@@ -50,7 +50,9 @@ BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 # upstream patches
 # lennart said this was upstreamed already.  :)
-Patch100: http://0pointer.de/public/xine-pulse-rework2.patch
+Patch100:       http://0pointer.de/public/xine-pulse-rework2.patch
+Patch101:       %{name}-1.1.11.1-mkv.patch
+Patch102:       %{name}-1.1.11.1-qt.patch
 
 Provides:       xine-lib(plugin-abi) = %{abiver}
 # X11
@@ -182,6 +184,8 @@ touch -r m4/optimizations.m4.stamp m4/optimizations.m4
 %patch6 -p1 -b .deepbind
 
 %patch100 -p1 -b .pulse-rework2
+%patch101 -p1 -b .mkv
+%patch102 -p1 -b .qt
 
 # Avoid standard rpaths on lib64 archs:
 sed -i -e 's|"/lib /usr/lib\b|"/%{_lib} %{_libdir}|' configure
@@ -403,6 +407,10 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Apr  9 2008 Ville Skyttä <ville.skytta at iki.fi> - 1.1.11.1-3
+- Apply upstream fixes for Quicktime (#441705) and Matroska regressions
+  introduced in 1.1.11.1.
+
 * Mon Apr 07 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.1.11.1-2
 - pulse-rework2 patch (#439731)
 - -pulseaudio subpkg (#439731)

                 reply	other threads:[~2026-07-20 20:00 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178457763297.1.4636395303573732529.rpms-xine-lib-386e299c4adf@fedoraproject.org \
    --to=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox