Skip to content

Commit 9952d8a

Browse files
committed
version 0.14.0
- API: - Add `Player.setPointMap()` - Fix Player::foreignGLContextDestroyed() does nothing. Useful to realease gl resources if player is destroyed before context - Release GL resources ASAP. - Fix realtime streams frame drop - Fix rtp decode error - Fix a crash if recreate opengl context frequently - Fix macCatalyst build, fix macOS < 11 - Fix ffmpeg av1 can not fallback to dav1d - Fix metal snapshot and resize renders a green frame - Fix seeking may output a frame with wrong timestamp
1 parent 2fbccd3 commit 9952d8a

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

Changelog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
Change log:
22

3+
0.14.0 - 2022-01-31
4+
5+
- API:
6+
- Add `Player.setPointMap()`
7+
- Fix Player::foreignGLContextDestroyed() does nothing. Useful to realease gl resources if player is destroyed before context
8+
- Release GL resources ASAP.
9+
- Fix realtime streams frame drop
10+
- Fix rtp decode error
11+
- Fix a crash if recreate opengl context frequently
12+
- Fix macCatalyst build, fix macOS < 11
13+
- Fix ffmpeg av1 can not fallback to dav1d
14+
- Fix metal snapshot and resize renders a green frame
15+
- Fix seeking may output a frame with wrong timestamp
16+
17+
318
0.13.0 - 2021-12-26
419

520
- API:

ci-before-build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ elif [ `which brew` ]; then
4444
if [ "$TARGET_OS" == "macOS" ]; then
4545
pkgs+=" glfw3 sdl2"
4646
echo "$TARGET_ARCH" |grep arm >/dev/null || { # FIXME: arm64 host build
47-
time brew cask install xquartz
48-
pkgs+=" pulseaudio"
47+
pkgs+=" xquartz pulseaudio" # no more cask
4948
}
5049
fi
5150
time brew install $pkgs

nuget/mdk.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>mdk</id>
5-
<version>0.13.0.1</version>
5+
<version>0.14.0.0</version>
66
<title>MDK</title>
77
<authors>Wang Bin</authors>
88
<owners>Wang Bin</owners>

0 commit comments

Comments
 (0)