Hello community, here is the log from the commit of package QMPlay2 for openSUSE:Factory checked in at 2020-12-11 20:17:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/QMPlay2 (Old) and /work/SRC/openSUSE:Factory/.QMPlay2.new.2328 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "QMPlay2" Fri Dec 11 20:17:02 2020 rev:48 rq:854902 version:20.12.07 Changes: -------- --- /work/SRC/openSUSE:Factory/QMPlay2/QMPlay2.changes 2020-12-02 13:58:00.513787683 +0100 +++ /work/SRC/openSUSE:Factory/.QMPlay2.new.2328/QMPlay2.changes 2020-12-11 20:17:03.772669381 +0100 @@ -0,0 +1,22 @@ +Thu Dec 10 17:06:11 UTC 2020 - Simon Vogl <[email protected]> + +- Added 0002-fix-youtube-offset.patch to fix wrong YouTube video playback offset + +------------------------------------------------------------------- +Tue Dec 8 13:22:54 UTC 2020 - Simon Vogl <[email protected]> + +- Removed 0001-fix-build-error-lp151.patch as it is merged upstream +- Removed 0003-fix-youtube-search.patch as it is merged upstream +- Renamed 0002-fix-broken-python-detection.patch to 0001-fix-broken-python-detection.patch as it is the first patch now +- Update to version 20.12.07 + * fix displaying of subtitles from media file in some rare cases, + * load fonts from media file when using subtitles from file, + * fix inactive streams text color in Information panel, + * add Japanese language file (harujisaku), + * fix CUVID/Vulkan on some hardware, + * improve CMake files for Windows, + * fix "wmalossless" audio time, + * fix YouTube search, + * fix for SDP files, + * minor fixes. + Old: ---- 0001-fix-build-error-lp151.patch 0002-fix-broken-python-detection.patch 0003-fix-youtube-search.patch QMPlay2-src-20.07.04.tar.xz New: ---- 0001-fix-broken-python-detection.patch 0002-fix-youtube-offset.patch QMPlay2-src-20.12.07.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ QMPlay2.spec ++++++ --- /var/tmp/diff_new_pack.8CcXf3/_old 2020-12-11 20:17:04.640670112 +0100 +++ /var/tmp/diff_new_pack.8CcXf3/_new 2020-12-11 20:17:04.640670112 +0100 @@ -19,19 +19,17 @@ %define __builder Ninja Name: QMPlay2 -Version: 20.07.04 +Version: 20.12.07 Release: 0 Summary: A Qt based media player, streamer and downloader License: LGPL-3.0-or-later Group: Productivity/Multimedia/Video/Players URL: https://github.com/zaps166/QMPlay2 Source: https://github.com/zaps166/QMPlay2/releases/download/%{version}/QMPlay2-src-%{version}.tar.xz -# PATCH-FIX-UPSTREAM -Patch1: 0001-fix-build-error-lp151.patch # PATCH-FIX-OPENSUSE -Patch2: 0002-fix-broken-python-detection.patch +Patch1: 0001-fix-broken-python-detection.patch # PATCH-FIX-UPSTREAM -Patch3: 0003-fix-youtube-search.patch +Patch2: 0002-fix-youtube-offset.patch BuildRequires: cmake >= 3.5 BuildRequires: gcc-c++ BuildRequires: ninja ++++++ 0002-fix-broken-python-detection.patch -> 0001-fix-broken-python-detection.patch ++++++ ++++++ 0002-fix-youtube-offset.patch ++++++ From a545ad4b1d812e9ab4d282d390c8d174f2e0b731 Thu 10 12 17:06:11 2020 From: Simon Vogl <[email protected]> Date: Fri, 10 Dec 2020 17:06:11 UTC Subject: [PATCH] Fix YouTube video playback offset for QMPlay2 This patch is required to fix QMPlay2's YouTube video playback offset. ---- a/src/modules/FFmpeg/FormatContext.cpp +++ b/src/modules/FFmpeg/FormatContext.cpp @@ -730,6 +730,7 @@ bool FormatContext::open(const QString &_url, const QString ¶m) if (name() == "sdp") { isLocal = false; + formatCtx->flags |= AVFMT_FLAG_NOBUFFER; } else if (name().startsWith("image2") || name().endsWith("_pipe")) { @@ -742,9 +743,6 @@ bool FormatContext::open(const QString &_url, const QString ¶m) formatCtx->flags |= AVFMT_FLAG_FAST_SEEK; //This should be set before "avformat_open_input", but seems to be working for MP3... } - if (!isLocal) - formatCtx->flags |= AVFMT_FLAG_NOBUFFER; - if (avformat_find_stream_info(formatCtx, nullptr) < 0) return false; ++++++ QMPlay2-src-20.07.04.tar.xz -> QMPlay2-src-20.12.07.tar.xz ++++++ ++++ 5156 lines of diff (skipped) _______________________________________________ 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]
