8 Commits

Author SHA256 Message Date
d7e3e91fc2 Accepting request 1330378 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/1330378
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmlt?expand=0&rev=80
2026-02-02 13:58:35 +00:00
60efceabe6 - Update to 7.36.1:
* Fix a regression creating a xml-clip producer or producer with
    a null profile. This broke, for example, nesting a MLT XML project
    file within another project in Shotcut.

- Update to 7.36.0:
  Framework:
  * Added mlt_image_default_colorspace()
  * Added mlt_image_default_trc()
  * Added mlt_image_default_primaries()
  * Added mlt_color_convert_trc()
  * Added the mlt_consumer property mlt_color_trc to drive a new
    color_transform normalizer filter. This sets the color transfer function to
    use for image/video effects. It is beneficial and correct to use linear
    color for any pixel mixing whether for blending or interpolation.
  * Removed atexit(mlt_factory_close) in mlt_factory_init(). Close the factory
    yourself if you feel the need to (not generally needed when exiting a
    process).
  * Prevent possible crash in mlt_service_connect_producer().
  * Added mlt_profile_is_valid() and Mlt::Profile::is_valid().
  * Fixed crash on invalid profile (CVE-2025-65834)
  Modules:
  * Drop support for Qt 5.
  * Fixed bad color in luma transition's dissolve (regression in v7.34.0).
  * Fixed HLG HDR broken in decklink consumer (regression in v7.34.0).
  * Fixed warnings when flushing audio in the avformat consumer.
  * Added support for hwaccel=vulkan to the avformat producer.
  * Added a color_transform normalizer filter to the core module to convert all
    image/video producers to and from linear color. It is abstract in the core
    module and drives some filters

OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmlt?expand=0&rev=185
2026-02-02 10:24:43 +00:00
3d71520343 Accepting request 1315910 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/1315910
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmlt?expand=0&rev=79
2025-11-06 17:14:34 +00:00
1bc3e33b8e - Update to 7.34.1
* Fixed compiling with Qt 5.

- Update to 7.34:
  * Added mlt_image_rgba64 format
  * Added mlt_color_trc, mlt_color_primaries, and more
    mlt_colorspaces along with functions
  * Fixed some minor memory leaks with cppcheck
  * Added rgba and rgba64 formats to the luma transition.
  * Added rgba64 format to affine filter and transition.
  * Added rgba64 format to the qtblend transition.
  * Added support for FFmpeg 8 to the avformat module.
  * Fixed audio panner filter for 5.1 channel layout.
  * Fixed converting 10-bit full to limited range in avformat
    producer (regression in v7.30.0).
  * Fixed shadow not working for multi-line template titles in
    kdenlivetitle producer.
  * Fixed mask_apply filter with custom transition.
  * Added input_chmask & output_chmask properties to mono filter.
  * Added channel_mask property to LADSPA/LV2/VST2 filters.
  * Added channel_mask to the volume filter.
  * Added an outline video filter.
  * Fixed a deadlock on image with a % in the name in qimage
    producer.
  * Added scrubbing to the decklink consumer.
  * Fixed & not decoded to & in the xml producer.
  * Fixed converting BT.709 to BT.2020 in the avformat module.
  * Fixed building a ladspa module without JACK as dependency.
  * Deprecate a JACK Rack XML file in the jackrack and ladspa
    modules.

OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmlt?expand=0&rev=183
2025-11-06 04:55:00 +00:00
a2e0c2180e Accepting request 1311158 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/1311158
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmlt?expand=0&rev=78
2025-10-13 15:27:03 +00:00
71ad14304d - Add upstream change:
* mlt-ffmpeg-8.patch

OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmlt?expand=0&rev=181
2025-10-13 14:40:34 +00:00
cb9fb30ba3 Accepting request 1279520 from multimedia:libs
OBS-URL: https://build.opensuse.org/request/show/1279520
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmlt?expand=0&rev=77
2025-05-26 16:33:59 +00:00
0a3d84646f Update to 7.32
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmlt?expand=0&rev=179
2025-05-23 11:23:02 +00:00
4 changed files with 170 additions and 31 deletions

View File

@@ -1,3 +1,162 @@
-------------------------------------------------------------------
Mon Feb 2 09:41:08 UTC 2026 - Michael Vetter <mvetter@suse.com>
- Update to 7.36.1:
* Fix a regression creating a xml-clip producer or producer with
a null profile. This broke, for example, nesting a MLT XML project
file within another project in Shotcut.
-------------------------------------------------------------------
Mon Feb 2 09:38:52 UTC 2026 - Michael Vetter <mvetter@suse.com>
- Update to 7.36.0:
Framework:
* Added mlt_image_default_colorspace()
* Added mlt_image_default_trc()
* Added mlt_image_default_primaries()
* Added mlt_color_convert_trc()
* Added the mlt_consumer property mlt_color_trc to drive a new
color_transform normalizer filter. This sets the color transfer function to
use for image/video effects. It is beneficial and correct to use linear
color for any pixel mixing whether for blending or interpolation.
* Removed atexit(mlt_factory_close) in mlt_factory_init(). Close the factory
yourself if you feel the need to (not generally needed when exiting a
process).
* Prevent possible crash in mlt_service_connect_producer().
* Added mlt_profile_is_valid() and Mlt::Profile::is_valid().
* Fixed crash on invalid profile (CVE-2025-65834)
Modules:
* Drop support for Qt 5.
* Fixed bad color in luma transition's dissolve (regression in v7.34.0).
* Fixed HLG HDR broken in decklink consumer (regression in v7.34.0).
* Fixed warnings when flushing audio in the avformat consumer.
* Added support for hwaccel=vulkan to the avformat producer.
* Added a color_transform normalizer filter to the core module to convert all
image/video producers to and from linear color. It is abstract in the core
module and drives some filters
* Added filter sws_colortransform that is more efficient than avfilter.swscale but requires FFmpeg 8.
Changed the default property values of the null consumer: real_time: -1 terminate_on_pause: 1
* Changed the luma and movit.luma transitions to progress linearly with linear color_trc.
* Fixed the alpha channel dropped by the xml-clip producer.
* Added mlt_image_rgba64 format
* Changed the mask_apply filter default transition to qtblend.
* Removed the maximum for the alpha property on the brightness filter so that
you can increase the opacity of an existing alpha channel.
* Fixed background image scaling in the gpsgraphic filter.
* Fix audio artifacts with pcm_s24le in mkv in avformat producer.
Other:
* Fixed melt on Windows not reading file path/name with extended characters (regression in v7.34.0).
* Removed bitrate and quality limits in the vp9 and webm avformat presets.
* Fixed building the ruby bindings with Ruby 3.0.
* More fixes for MSVC.
* Removed win32/strptime.c and replaced with Qt functions.
* Stop showing melt usage on error exit.
- Drop Qt5 support
-------------------------------------------------------------------
Wed Nov 5 18:09:25 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 7.34.1
* Fixed compiling with Qt 5.
-------------------------------------------------------------------
Tue Nov 4 18:19:23 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 7.34:
* Added mlt_image_rgba64 format
* Added mlt_color_trc, mlt_color_primaries, and more
mlt_colorspaces along with functions
* Fixed some minor memory leaks with cppcheck
* Added rgba and rgba64 formats to the luma transition.
* Added rgba64 format to affine filter and transition.
* Added rgba64 format to the qtblend transition.
* Added support for FFmpeg 8 to the avformat module.
* Fixed audio panner filter for 5.1 channel layout.
* Fixed converting 10-bit full to limited range in avformat
producer (regression in v7.30.0).
* Fixed shadow not working for multi-line template titles in
kdenlivetitle producer.
* Fixed mask_apply filter with custom transition.
* Added input_chmask & output_chmask properties to mono filter.
* Added channel_mask property to LADSPA/LV2/VST2 filters.
* Added channel_mask to the volume filter.
* Added an outline video filter.
* Fixed a deadlock on image with a % in the name in qimage
producer.
* Added scrubbing to the decklink consumer.
* Fixed &amp; not decoded to & in the xml producer.
* Fixed converting BT.709 to BT.2020 in the avformat module.
* Fixed building a ladspa module without JACK as dependency.
* Deprecate a JACK Rack XML file in the jackrack and ladspa
modules.
* Added filter qtblend_mode.
* Fixed incorrect alpha channel breaking optimization of
qtblend.
* Fixed pixel format gbrap (Ut Video with alpha channel) in
the avformat producer.
* Fixed opencv_tracker filter on cut playlist clips.
* Fixed warning about missing color range for avfilters that
use it (e.g. avfilter.colorspace).
* Added typewriter properties to the qtext filter.
* Fixed color distortion or a crash if using hwaccel with
orientation rotation in avformat producer.
* Enable Qt 6 and disable Qt 5 modules in CMake by default.
* Disable the SDL1 module in CMake by default.
* Changed melt now exits with 1 if the producer is invalid.
* Various changes to work with MSVC compiler.
* Changed SVT-AV1 encode presets to VBR for Opus audio.
* Fixed initializing Qt on the main thread in melt.
* Documented the -progress2 option for melt.
* Increased the minimum C++ version to C++20.
* Converted many modules to use CMake find_package().
* Added libgen.c and libgen.h for MSVC.
- Drop patch, no longer needed:
* mlt-ffmpeg-8.patch
-------------------------------------------------------------------
Mon Oct 13 12:56:32 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Add upstream change:
* mlt-ffmpeg-8.patch
-------------------------------------------------------------------
Fri May 23 09:57:20 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 7.32
* Added mlt_service_set_consumer() and
Mlt::Service::set_consumer().
* Optimized mlt_multitrack to not request a frame from a producer
that both hidden and muted.
* Fixed pixel format for VP8/VP9 streams in avformat producer.
* Fixed yuva422p pixel format in avformat producer.
* Added MLT_AVFORMAT_HWACCEL & MLT_AVFORMAT_HWACCEL_DEVICE
environment variables to avformat producer.
* Updated decklink module for recent hardware and drivers.
* Added colorspace and color_trc (including HDR) properties to
the decklink consumer.
* Fixed silencing extra audio channel (e.g. 6 => 8) in decklink
consumer.
* Fixed 5.1 C/LFE channels swapped over HDMI in decklink consumer.
* Fixed text outline had sharp angles in kdenlivetitle producer.
* Fixed default gamma to be Rec. 709 for 10-bit Y'CbCr from movit
module.
* Added support for HLG gamma to movit module (requires
ddennedy/movit fork).
* Fixed opencv_tracker filter should require multiple keyframes
to be ready.
* Fixed OpenCV crash on rect <= 1 pixel in opencv_tracker filter.
* Fixed aspect ratio in qtblend filter and transition.
* Fixed QT_QPA_PLATFORM=offscreen not working in qt and glaxnimate
modules.
* Improved preview scaling in qtblend filter.
* Fixed requesting huge images on multiple qtblend filters or
transitions.
* Fixed sdl2 consumer on macOS.
* Fixed the strobe filter not working with movit.
* Fixed color and gamma using timeremap link with movit.
* Fixed consumer properties (e.g. channels) missing on qglsl
consumer injected by the xml producer.
-------------------------------------------------------------------
Mon Jan 27 07:51:04 UTC 2025 - Paolo Stivanin <info@paolostivanin.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package libmlt
#
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,18 +18,17 @@
%define _name mlt
%define libname lib%{_name}
%define lversion 7.30.0
%define lversion 7.36.1
%define sover 7
%define lib_pkgname %{libname}-%{sover}-%{sover}
%define _name_pp %{_name}++
%define libname_pp lib%{_name_pp}
%define sover_pp 7
%define lversion_pp 7.30.0
%define lversion_pp 7.36.1
%define libpp_pkgname %{libname_pp}-%{sover_pp}-%{sover_pp}
%bcond_without Qt6
%bcond_without rtaudio
Name: %{libname}
Version: 7.30.0
Version: 7.36.1
Release: 0
Summary: Multimedia framework for television broadcasting
License: GPL-3.0-or-later
@@ -39,7 +38,7 @@ Source0: https://github.com/mltframework/mlt/releases/download/v%{version
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: gcc-c++
%if %{with Qt6} && 0%{?suse_version} < 1600
%if 0%{?suse_version} < 1600
# Qt 6 requires a compiler that fully supports c++-17
BuildRequires: gcc13-c++
BuildRequires: gcc13-PIE
@@ -47,13 +46,6 @@ BuildRequires: gcc13-PIE
BuildRequires: ladspa-devel
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: cmake(Qt5Core) >= 5.10
BuildRequires: cmake(Qt5Gui)
BuildRequires: cmake(Qt5Network)
BuildRequires: cmake(Qt5Svg)
BuildRequires: cmake(Qt5Widgets)
BuildRequires: cmake(Qt5Xml)
%if %{with Qt6}
BuildRequires: cmake(Qt6Core)
BuildRequires: cmake(Qt6Core5Compat)
BuildRequires: cmake(Qt6Gui)
@@ -61,13 +53,6 @@ BuildRequires: cmake(Qt6Network)
BuildRequires: cmake(Qt6SvgWidgets)
BuildRequires: cmake(Qt6Widgets)
BuildRequires: cmake(Qt6Xml)
%else
BuildRequires: cmake(Qt5Core) >= 5.10
BuildRequires: cmake(Qt5Gui)
BuildRequires: cmake(Qt5Svg)
BuildRequires: cmake(Qt5Widgets)
BuildRequires: cmake(Qt5Xml)
%endif
BuildRequires: pkgconfig(alsa)
BuildRequires: pkgconfig(fftw3)
BuildRequires: pkgconfig(fontconfig)
@@ -180,9 +165,9 @@ transcoders and web streamers.
The functionality of the system is provided via an assortment of
tools, XML authoring components, and an plug-in based API.
%if %{with Qt6}
# Creating a distinct Qt 6 module avoids pulling Qt 6 when installing the
# libmlt modules package
%package -n %{libname}%{sover}-module-qt6
Summary: Qt 6 module for the MLT multimedia framework
Group: Productivity/Multimedia/Video/Editors and Convertors
@@ -197,7 +182,6 @@ The functionality of the system is provided via an assortment of
tools, XML authoring components, and an plug-in based API.
This package provides a Qt 6 module for MLT.
%endif
%package -n %{libname}%{sover}-data
Summary: Architecture-independent data files for the MLT multimedia framework
@@ -227,7 +211,7 @@ This package contains python bindings.
%autosetup -p1 -n %{_name}-%{version}
%build
%if %{with Qt6} && 0%{?sle_version}
%if 0%{?sle_version}
export CC=gcc-13 CXX=g++-13
%endif
@@ -244,9 +228,7 @@ export CC=gcc-13 CXX=g++-13
-DCMAKE_SKIP_RPATH=1 \
-DMOD_GLAXNIMATE=ON \
-DMOD_GLAXNIMATE_QT6=ON \
%if %{with Qt6}
-DMOD_QT6=ON
%endif
-DMOD_QT=ON \
%cmake_build
@@ -310,7 +292,6 @@ popd
%exclude %{_libdir}/%{_name}-%{sover}/libmltglaxnimate-qt6.so
%exclude %{_libdir}/%{_name}-%{sover}/libmltqt6.so
%if %{with Qt6}
%files -n %{libname}%{sover}-module-qt6
%dir %{_datadir}/%{_name}-%{sover}
%{_datadir}/%{_name}-%{sover}/glaxnimate-qt6/
@@ -318,7 +299,6 @@ popd
%dir %{_libdir}/%{_name}-%{sover}
%{_libdir}/%{_name}-%{sover}/libmltglaxnimate-qt6.so
%{_libdir}/%{_name}-%{sover}/libmltqt6.so
%endif
%files -n %{libname}%{sover}-data
%dir %{_datadir}/%{_name}-%{sover}/

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c802a5fdc16324f6c69273d0bb9718d30c2f635422e171ee01c0e7745e0e793c
size 1725015

3
mlt-7.36.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d2b956864ba2ff58bb4e2b2779aa36870bd2a3a835e2dbfda33faa5fc6f4d3a
size 1832413