[packages/xevd] - updated to 0.5.0
qboosh
qboosh at pld-linux.org
Thu Mar 20 21:00:02 CET 2025
commit f157dd87ec6258ded319a0cf52b19f2fdd0ed3f1
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Thu Mar 20 20:51:23 2025 +0100
- updated to 0.5.0
xevd-comparison.patch | 39 ---------------------------------------
xevd-dangling-pointer.patch | 31 -------------------------------
xevd-link.patch | 8 ++++----
xevd.spec | 16 ++++++----------
4 files changed, 10 insertions(+), 84 deletions(-)
---
diff --git a/xevd.spec b/xevd.spec
index d9b0661..de82ea0 100644
--- a/xevd.spec
+++ b/xevd.spec
@@ -5,21 +5,19 @@
Summary: eXtra-fast Essential Video Decoder (MPEG-5 EVC)
Summary(pl.UTF-8): eXtra-fast Essential Video Decoder - szybki dekoder obrazu MPEG-5 EVC
Name: xevd
-Version: 0.4.1
-%define gitref %{version}-4e76654c
-Release: 2
+Version: 0.5.0
+Release: 1
License: BSD
Group: Libraries
#Source0Download: https://github.com/mpeg5/xevd/releases
-Source0: https://github.com/mpeg5/xevd/archive/v%{gitref}/%{name}-%{gitref}.tar.gz
-# Source0-md5: d1642df4b69196430e669d6b278e73d7
+Source0: https://github.com/mpeg5/xevd/archive/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: b900608dca5d683f06bac028d74c3976
Patch0: %{name}-string.patch
Patch1: %{name}-link.patch
-Patch2: %{name}-dangling-pointer.patch
-Patch3: %{name}-comparison.patch
Patch4: %{name}-pc.patch
URL: https://github.com/mpeg5/xevd
BuildRequires: cmake >= 3.5
+BuildRequires: rpmbuild(macros) >= 1.605
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%description
@@ -128,11 +126,9 @@ Static XEVD library (Baseline Profile).
Statyczna biblioteka XEVD (profil Baseline).
%prep
-%setup -q -n %{name}-%{gitref}
+%setup -q
%patch -P0 -p1
%patch -P1 -p1
-%patch -P2 -p1
-%patch -P3 -p1
%patch -P4 -p1
echo "v%{version}" > version.txt
diff --git a/xevd-comparison.patch b/xevd-comparison.patch
deleted file mode 100644
index 4561426..0000000
--- a/xevd-comparison.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From e4ae0c567a6ec5e10c9f5ed44c61e4e3b6816c16 Mon Sep 17 00:00:00 2001
-From: Neal Gompa <neal at gompa.dev>
-Date: Wed, 18 Oct 2023 08:31:03 -0400
-Subject: [PATCH] app: Fix invalid comparison of c_buf in write_y4m_header
-
-This fixes the following error:
-
-/builddir/build/BUILD/xevd-0.4.1/app/xevd_app.c: In function 'write_y4m_header':
-/builddir/build/BUILD/xevd-0.4.1/app/xevd_app.c:300:15: error: the comparison will always evaluate as 'false' for the address of 'c_buf' will never be NULL [-Werror=address]
- 300 | if (c_buf == NULL)
- | ^~
----
- app/xevd_app.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/app/xevd_app.c b/app/xevd_app.c
-index abc1f17..ed1fbcd 100644
---- a/app/xevd_app.c
-+++ b/app/xevd_app.c
-@@ -273,8 +273,8 @@ static int write_y4m_header(char * fname, XEVD_IMGB * img)
- int bit_depth = op_out_bit_depth;
- int len = 80;
- int buff_len = 0;
-- char buf[80] = { 0, };
-- char c_buf[16] = { 0, };
-+ char buf[80] = { '\0', };
-+ char c_buf[16] = { '\0', };
- FILE * fp;
-
- if (color_format == XEVD_CF_YCBCR420)
-@@ -297,7 +297,7 @@ static int write_y4m_header(char * fname, XEVD_IMGB * img)
- if (bit_depth == 8) strcpy(c_buf, "mono");
- }
-
-- if (c_buf == NULL)
-+ if (strlen(c_buf) == 0)
- {
- logv0("Color format is not suuported by y4m");
- return XEVD_ERR;
diff --git a/xevd-dangling-pointer.patch b/xevd-dangling-pointer.patch
deleted file mode 100644
index c20654b..0000000
--- a/xevd-dangling-pointer.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 13b86a74e26df979dd1cc3a1cb19bf1ac828e197 Mon Sep 17 00:00:00 2001
-From: Dawid Kozinski <d.kozinski at samsung.com>
-Date: Mon, 11 Mar 2024 11:28:32 +0100
-Subject: [PATCH] Removed code that caused build error for windows (dangling
- pointer)
-
-mctx->pps_dra_params was initialised by pointer taken from local variable, but it wasn't used anywhere
----
- src_main/xevdm.c | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/src_main/xevdm.c b/src_main/xevdm.c
-index 1d212f9..c3e0aa5 100644
---- a/src_main/xevdm.c
-+++ b/src_main/xevdm.c
-@@ -3329,7 +3329,6 @@ int xevd_apply_filter(XEVD_CTX *ctx, XEVD_IMGB *imgb)
- // Assigned effective DRA controls as specified by PPS
- xevd_assert((pps_dra_id > -1) && (pps_dra_id < 32) && ((g_dra_control + pps_dra_id)->signal_dra_flag == 1));
- xevd_mcpy(&(g_dra_control_effective.signalled_dra), (g_dra_control + pps_dra_id), sizeof(SIG_PARAM_DRA));
-- mctx->pps_dra_params = (void *)&(g_dra_control_effective.signalled_dra);
-
- if (g_dra_control_effective.flag_enabled)
- {
-@@ -3735,7 +3734,6 @@ int xevd_decode(XEVD id, XEVD_BITB * bitb, XEVD_STAT * stat)
- {
- memcpy(&(dra_control_effective.signalled_dra), dra_control + pps_dra_id, sizeof(SIG_PARAM_DRA));
- dra_control_effective.flag_enabled = 1;
-- mctx->pps_dra_params = &(dra_control_effective.signalled_dra);
- }
- else
- {
diff --git a/xevd-link.patch b/xevd-link.patch
index f1c22aa..eda58aa 100644
--- a/xevd-link.patch
+++ b/xevd-link.patch
@@ -1,7 +1,7 @@
---- xevd-0.4.1-4e76654c/src_main/CMakeLists.txt.orig 2022-12-21 06:54:35.000000000 +0100
-+++ xevd-0.4.1-4e76654c/src_main/CMakeLists.txt 2024-04-13 19:47:21.643990768 +0200
-@@ -115,6 +115,7 @@ elseif( UNIX OR MINGW )
- LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
+--- xevd-0.5.0/src_main/CMakeLists.txt.orig 2025-03-20 18:07:52.094656996 +0100
++++ xevd-0.5.0/src_main/CMakeLists.txt 2025-03-20 18:09:13.567572499 +0100
+@@ -109,6 +109,7 @@ elseif( UNIX OR MINGW )
+ set_target_properties(${LIB_NAME}_dynamic PROPERTIES FOLDER lib LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
target_compile_definitions( ${LIB_NAME} PUBLIC ANY LINUX )
target_link_libraries(${LIB_NAME} m)
+ target_link_libraries(${LIB_NAME}_dynamic m)
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/xevd.git/commitdiff/f157dd87ec6258ded319a0cf52b19f2fdd0ed3f1
More information about the pld-cvs-commit
mailing list