Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit e45ba92

Browse files
author
Michael Fabian 'Xaymar' Dirks
committed
project: Version 2.5.1
* Fixed error during initialization for H264 and H265 on Driver 19.x and above. * Fixed a bug with automatic Profile Level which sometimes caused an unsupported Profile Level to be selected.
1 parent b54e675 commit e45ba92

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

#Resources/PATCH_NOTES.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# 2.5.0 - New AMF SDK and code cleanup
2-
The plugin has been updated to the new 1.4.9.0 AMF SDK, which should make newer drivers work better with the plugin. Additionally some code cleanup has been done in order to reduce the work necessary for a Linux supporting build in the future - however there is no clear date on this yet. Various other errors were also fixed that could have caused crashes during startup, encoding and shutdown.
1+
# 2.5.1 - Support for Driver 19.x on AMD Vega
2+
The 19.x Driver started enforcing additional restrictions, which seem to only apply to AMD Vega GPUs and APUs. Due to this, the plugin would fail to properly initialize the encoder and users would have to manually set some options.
33

4-
For developers: The project now has clang-format support and cppcheck built in, which should reduce the amount of coding errors happening. Jenkins is now partially supported as a CI, once the libvirt plugin support Pipeline projects it will be fully supported. CMake can now tell apart commit versions, but that is only used for the plugin version string in version.h.in.
4+
With this patch, this is no longer necessary. The encoder options are now applied correctly and should no longer cause any issues. Additionally a bug was fixed for Automatic Profile Level which caused it to occasionally select an unsupported Profile Level.
55

66
## Changelog
7+
### 2.5.1
8+
* Fixed error during initialization for H264 and H265 on Driver 19.x and above.
9+
* Fixed a bug with automatic Profile Level which sometimes caused an unsupported Profile Level to be selected.
10+
711
### 2.5.0
812
* Updated AMF to 1.4.9.0.
913
* Updated english locale text for Pre-Pass to include encoding cost.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Include("cmake/util.cmake")
2222
# Automatic Versioning
2323
Set(VERSION_MAJOR 2)
2424
Set(VERSION_MINOR 5)
25-
Set(VERSION_PATCH 0)
25+
Set(VERSION_PATCH 1)
2626
Set(VERSION_TWEAK 0)
2727
Set(PROJECT_COMMIT "N/A")
2828
If(EXISTS "${CMAKE_CURRENT_LIST_DIR}/.git")

0 commit comments

Comments
 (0)