public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Vitaly Zaitsev <vitaly@easycoding.org>
To: git-commits@fedoraproject.org
Subject: [rpms/mpv] epel9-next: Updated to version 0.36.0.
Date: Mon, 20 Jul 2026 19:36:11 GMT [thread overview]
Message-ID: <178457617107.1.3481678878070216804.rpms-mpv-d8433f5b58a5@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/mpv
Branch : epel9-next
Commit : d8433f5b58a58579cb1516ffb69ac61e6f5ef770
Author : Vitaly Zaitsev <vitaly@easycoding.org>
Date : 2023-07-23T19:32:59+02:00
Stats : +13/-127 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/mpv/c/d8433f5b58a58579cb1516ffb69ac61e6f5ef770?branch=epel9-next
Log:
Updated to version 0.36.0.
---
diff --git a/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch b/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch
deleted file mode 100644
index 251c1a4..0000000
--- a/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From 3a2f8d42ab203c961e50ce198ca4eb232de3819a Mon Sep 17 00:00:00 2001
-From: llyyr <llyyr.public@gmail.com>
-Date: Tue, 14 Mar 2023 00:25:04 +0530
-Subject: [PATCH] vo_gpu_next: compatibility with libplacebo v6.265
-
-libplacebo v6.265.0 removed v4 deprecations. We already require
-PL_API_VER >= 202, so we don't need to wrap
-pl_tex_transfer_params.row_pitch around a conditional, which exists
-since PL_API_VER >= 168. However, pl_source_frame.duration does not exist until
-PL_API_VER >= 219, so we should use a conditional directive.
----
- video/out/vo_gpu_next.c | 7 ++++++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/video/out/vo_gpu_next.c b/video/out/vo_gpu_next.c
-index 7ed01d52165..569ea373c8a 100644
---- a/video/out/vo_gpu_next.c
-+++ b/video/out/vo_gpu_next.c
-@@ -265,7 +265,7 @@ static void update_overlays(struct vo *vo, struct mp_osd_res res, double pts,
- ok = pl_tex_upload(p->gpu, &(struct pl_tex_transfer_params) {
- .tex = entry->tex,
- .rc = { .x1 = item->packed_w, .y1 = item->packed_h, },
-- .stride_w = item->packed->stride[0] / tex_fmt->texel_size,
-+ .row_pitch = item->packed->stride[0],
- .ptr = item->packed->planes[0],
- });
- if (!ok) {
-@@ -882,6 +882,9 @@ static void draw_frame(struct vo *vo, struct vo_frame *frame)
-
- pl_queue_push(p->queue, &(struct pl_source_frame) {
- .pts = mpi->pts,
-+#if PL_API_VER >= 219
-+ .duration = frame->ideal_frame_duration,
-+#endif
- .frame_data = mpi,
- .map = map_frame,
- .unmap = unmap_frame,
-@@ -939,7 +942,9 @@ static void draw_frame(struct vo *vo, struct vo_frame *frame)
- .pts = frame->current->pts + vsync_offset,
- .radius = pl_frame_mix_radius(&p->params),
- .vsync_duration = frame->vsync_interval,
-+#if PL_API_VER < 219
- .frame_duration = frame->ideal_frame_duration,
-+#endif
- .interpolation_threshold = opts->interpolation_threshold,
- };
-
diff --git a/mpv-0.35.1-yt-dlp-hook-fix.patch b/mpv-0.35.1-yt-dlp-hook-fix.patch
deleted file mode 100644
index 81792de..0000000
--- a/mpv-0.35.1-yt-dlp-hook-fix.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-From 985655ebfd77ceddc44d76f8cc6dc446002f34ee Mon Sep 17 00:00:00 2001
-From: Christoph Heinrich <christoph.heinrich@student.tugraz.at>
-Date: Fri, 3 Mar 2023 00:45:45 +0100
-Subject: [PATCH 1/2] ytdl_hook: init fragment requires other fragments
-
-With dash the first fragment was always considered an init fragment if
-there wasn't a duration. However that only makes sense when there are
-also other fragments, so check if there are other fragments in addition
-to the lack of a duration.
----
- player/lua/ytdl_hook.lua | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua
-index 27e5f4544b2..9e50b3a80b8 100644
---- a/player/lua/ytdl_hook.lua
-+++ b/player/lua/ytdl_hook.lua
-@@ -297,7 +297,7 @@ local function edl_track_joined(fragments, protocol, is_live, base)
- local args = ""
-
- -- assume MP4 DASH initialization segment
-- if not fragments[1].duration then
-+ if not fragments[1].duration and #fragments > 1 then
- msg.debug("Using init segment")
- args = args .. ",init=" .. edl_escape(join_url(base, fragments[1]))
- offset = 2
-
-From a5961ad096b1361a12f836c8b170fc748f46962a Mon Sep 17 00:00:00 2001
-From: Christoph Heinrich <christoph.heinrich@student.tugraz.at>
-Date: Fri, 3 Mar 2023 00:50:58 +0100
-Subject: [PATCH 2/2] ytdl_hook: only log error when no fallback url available
-
-An error indicates that something doesn't work, but as long as a
-safe url is available, playback is still expected to work.
-
-Thus reduce logging level of MP4 DASH without fragments message and
-add a new error message for when there is no safe url available either.
-
-Also adds a missing space.
----
- player/lua/ytdl_hook.lua | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua
-index 9e50b3a80b8..77f7446ed22 100644
---- a/player/lua/ytdl_hook.lua
-+++ b/player/lua/ytdl_hook.lua
-@@ -309,7 +309,7 @@ local function edl_track_joined(fragments, protocol, is_live, base)
- -- if not available in all, give up.
- for i = offset, #fragments do
- if not fragments[i].duration then
-- msg.error("EDL doesn't support fragments" ..
-+ msg.verbose("EDL doesn't support fragments " ..
- "without duration with MP4 DASH")
- return nil
- end
-@@ -423,6 +423,7 @@ local function formats_to_edl(json, formats, use_all_formats)
- track.protocol, json.is_live,
- track.fragment_base_url)
- if not edl_track and not url_is_safe(track.url) then
-+ msg.error("No safe URL or supported fragmented stream available")
- return nil
- end
-
diff --git a/mpv.spec b/mpv.spec
index 7fa0e61..522c215 100644
--- a/mpv.spec
+++ b/mpv.spec
@@ -1,18 +1,12 @@
Name: mpv
-Version: 0.35.1
-Release: 6%{?dist}
+Version: 0.36.0
+Release: 1%{?dist}
License: GPL-2.0-or-later AND LGPL-2.1-or-later
Summary: Movie player playing most video formats and DVDs
URL: https://%{name}.io/
Source0: https://github.com/%{name}-player/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
-# https://github.com/mpv-player/mpv/pull/11398
-Patch100: %{name}-0.35.1-yt-dlp-hook-fix.patch
-# Upstream patch for libplacebo v6.265
-Patch101: https://github.com/mpv-player/mpv/commit/3a2f8d42ab203c961e50ce198ca4eb232de3819a.patch
-
-
BuildRequires: desktop-file-utils
BuildRequires: gcc
BuildRequires: libappstream-glib
@@ -34,11 +28,11 @@ BuildRequires: pkgconfig(jack)
BuildRequires: pkgconfig(lcms2)
BuildRequires: pkgconfig(libarchive) >= 3.4.0
BuildRequires: pkgconfig(libass)
-BuildRequires: pkgconfig(libavcodec) >= 58.16.100
-BuildRequires: pkgconfig(libavdevice) >= 57.0.0
-BuildRequires: pkgconfig(libavfilter) >= 7.14.100
-BuildRequires: pkgconfig(libavformat) >= 58.9.100
-BuildRequires: pkgconfig(libavutil) >= 56.12.100
+BuildRequires: pkgconfig(libavcodec) >= 59.27.100
+BuildRequires: pkgconfig(libavdevice) >= 58.13.100
+BuildRequires: pkgconfig(libavfilter) >= 7.110.100
+BuildRequires: pkgconfig(libavformat) >= 59.24.100
+BuildRequires: pkgconfig(libavutil) >= 57.24.100
BuildRequires: pkgconfig(libbluray)
BuildRequires: pkgconfig(libcdio)
BuildRequires: pkgconfig(libcdio_paranoia)
@@ -48,8 +42,8 @@ BuildRequires: pkgconfig(libjpeg)
BuildRequires: pkgconfig(libpipewire-0.3) >= 0.3.19
BuildRequires: pkgconfig(libplacebo)
BuildRequires: pkgconfig(libpulse)
-BuildRequires: pkgconfig(libswresample) >= 3.0.100
-BuildRequires: pkgconfig(libswscale) >= 5.0.101
+BuildRequires: pkgconfig(libswresample) >= 3.9.100
+BuildRequires: pkgconfig(libswscale) >= 5.9.100
BuildRequires: pkgconfig(libva)
BuildRequires: pkgconfig(lua-5.1)
BuildRequires: pkgconfig(mujs)
@@ -181,6 +175,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%{_libdir}/pkgconfig/%{name}.pc
%changelog
+* Sun Jul 23 2023 Vitaly Zaitsev <vitaly@easycoding.org> - 0.36.0-1
+- Updated to version 0.36.0.
+
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.35.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
diff --git a/sources b/sources
index 920fda5..6c9cf7c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (mpv-0.35.1.tar.gz) = 42f3564a9ed4d972d14b2c697b0163f06a8bb68a0606a86c34935181247c783e3cb62286b445799998def0919fb13fce8b8f6453f82652d5bfaea5929119127a
+SHA512 (mpv-0.36.0.tar.gz) = 51f455a425ea5aac47acb3582d0f958a34248a2290a8d6887d22bcb9385fe8d1ab5d7f09d5408cfecfb73c1ec85d1b8ec8958e45a4941d3f711a2e580187472f
next reply other threads:[~2026-07-20 19:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-20 19:36 Vitaly Zaitsev [this message]
2026-07-20 19:36 [rpms/mpv] epel9-next: Updated to version 0.36.0 Vitaly Zaitsev
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=178457617107.1.3481678878070216804.rpms-mpv-d8433f5b58a5@fedoraproject.org \
--to=vitaly@easycoding.org \
--cc=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