From 6f4663e60eee4af602e51e96443c7de1b8d4d4b4 Mon Sep 17 00:00:00 2001 From: SuRGeoNix Date: Tue, 16 Apr 2024 16:37:44 +0300 Subject: [PATCH] Updates to v3.7.47 (FlyleafLib) / v1.3.9 (FlyleafME) / v1.0.28 (FlyleafHost.WinUI) - Demuxer/Decoder: Adds Data Stream support - Demuxer: Introduces (Config.Demuxer.) DefaultHTTPQueryToUnderlying and ExtraHTTPQueryParamsToUnderlying to pass HTTP query parameters to the underlying contexts - Player: Fixes possible infinite sleep - Renderer: Fixes the old (Config.Video.) ClearScreenOnOpen which has been now renamed to ClearScreen to work properly (when false will keep the last rendered frame after stop/close/open) [Breaking Changes] - Config.Video.ClearScreenOnOpen renamed to ClearScreen - Disables http_persistent for DASH/HLS by default in the Config.Demuxer Format Options --- .../FlyleafLib.Controls.WPF.csproj | 2 +- .../FlyleafLib.Controls.WinUI.csproj | 2 +- FlyleafLib/FlyleafLib.csproj | 15 +++++++++------ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/FlyleafLib.Controls.WPF/FlyleafLib.Controls.WPF.csproj b/FlyleafLib.Controls.WPF/FlyleafLib.Controls.WPF.csproj index f9ec6e55..28a3d1cc 100644 --- a/FlyleafLib.Controls.WPF/FlyleafLib.Controls.WPF.csproj +++ b/FlyleafLib.Controls.WPF/FlyleafLib.Controls.WPF.csproj @@ -4,7 +4,7 @@ net8.0-windows;net6.0-windows;net472 true true - 1.3.8 + 1.3.9 SuRGeoNix SuRGeoNix © 2024 LGPL-3.0-or-later diff --git a/FlyleafLib.Controls.WinUI/FlyleafLib.Controls.WinUI.csproj b/FlyleafLib.Controls.WinUI/FlyleafLib.Controls.WinUI.csproj index b3cadcd1..9183f3cc 100644 --- a/FlyleafLib.Controls.WinUI/FlyleafLib.Controls.WinUI.csproj +++ b/FlyleafLib.Controls.WinUI/FlyleafLib.Controls.WinUI.csproj @@ -8,7 +8,7 @@ true enable SuRGeoNix - 1.0.27 + 1.0.28 SuRGeoNix © 2024 https://github.com/SuRGeoNix/Flyleaf Flyleaf.png diff --git a/FlyleafLib/FlyleafLib.csproj b/FlyleafLib/FlyleafLib.csproj index ad6a7d66..6770e372 100644 --- a/FlyleafLib/FlyleafLib.csproj +++ b/FlyleafLib/FlyleafLib.csproj @@ -8,7 +8,7 @@ Media Player .NET Library for WinUI 3/WPF/WinForms (based on FFmpeg/DirectX) - 3.7.46 + 3.7.47 SuRGeoNix SuRGeoNix © 2024 LGPL-3.0-or-later @@ -17,11 +17,14 @@ true snupkg - - Decoders: Fixes a possible delay during start - - VideoDecoder: Monitors for codec changes also for software frames - - Player: Fixes a delay issue during buffering - - Renderer: Add Snapshot API for BitmapSource - - Renderer: Performance improvements (restores CullMode after adding H/V flip) + - Demuxer/Decoder: Adds Data Stream support + - Demuxer: Introduces (Config.Demuxer.) DefaultHTTPQueryToUnderlying and ExtraHTTPQueryParamsToUnderlying to pass HTTP query parameters to the underlying contexts + - Player: Fixes possible infinite sleep + - Renderer: Fixes the old (Config.Video.) ClearScreenOnOpen which has been now renamed to ClearScreen to work properly (when false will keep the last rendered frame after stop/close/open) + + [Breaking Changes] + - Config.Video.ClearScreenOnOpen renamed to ClearScreen + - Disables http_persistent for DASH/HLS by default in the Config.Demuxer Format Options