Skip to content

Commit

Permalink
version 0.10.2
Browse files Browse the repository at this point in the history
- Support apple sillicon(not tested on real device)
- Support swift language
- Support cocoapods for macOS via `pod 'mdk'`
- Add xcframework, including both macOS and iOS frameworks
- Add av1 support for CUDA decoder
- check pixel format support for mmal to fix yuv444p error
- mmal decoder: force copy if no 0-copy support
- Add ACES HDR tone map, via env `GPU_TONE_MAP=aces`
- Metal, d3d11, vulkan renderer support alpha blending if video has alpha channel
- Metal: fix crash if frame is invalid
- Fix a/v sync regression after seek since v0.10.1
  • Loading branch information
wang-bin committed Nov 18, 2020
1 parent d27c31d commit 686aef9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Change log:


0.10.2 - 2020-11-18

- Support apple sillicon(not tested on real device)
- Support swift language
- Support cocoapods for macOS via `pod 'mdk'`
- Add xcframework, including both macOS and iOS frameworks
- Add av1 support for CUDA decoder
- check pixel format support for mmal to fix yuv444p error
- mmal decoder: force copy if no 0-copy support
- Add ACES HDR tone map, via env `GPU_TONE_MAP=aces`
- Metal, d3d11, vulkan renderer support alpha blending if video has alpha channel
- Metal: fix crash if frame is invalid
- Fix a/v sync regression after seek since v0.10.1


0.10.1 - 2020-10-05

- Vulkan: support Player.snapshot()
Expand Down
4 changes: 2 additions & 2 deletions mdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'mdk'
s.version = '0.10.1.1'
s.version = '0.10.2.0'
s.summary = 'Multimedia Development Kit'
s.homepage = 'https://github.com/wang-bin/mdk-sdk'

Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|

s.platform = :osx
s.source = { :http => 'https://sourceforge.net/projects/mdk-sdk/files/nightly/mdk-sdk-macOS.zip' }
s.osx.deployment_target = '10.7'
s.osx.deployment_target = '10.9'
s.osx.vendored_frameworks = 'mdk-sdk/lib/mdk.framework'
s.osx.vendored_libraries = 'mdk-sdk/lib/libffmpeg.4.dylib'
end
2 changes: 1 addition & 1 deletion nuget/mdk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>mdk</id>
<version>0.10.1.0</version>
<version>0.10.2.0</version>
<title>MDK</title>
<authors>Wang Bin</authors>
<owners>Wang Bin</owners>
Expand Down

0 comments on commit 686aef9

Please sign in to comment.