Skip to content

Commit

Permalink
Merge branch 'release/2023.6.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
miosakuma committed May 30, 2023
2 parents f7f74f7 + c58f479 commit 60984f8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@

## develop

## 2023.6.0 (2023-05-30)

- [UPDATE] WebRTC を m114.5735.2.0 に上げる
- @miosakuma
- [FIX] 一部の Windows で VP8 の受信時にクラッシュする問題を修正する
- Query した上で Init しても MFX_ERR_UNSUPPORTED になるため VPL の場合は毎回 Init を呼ぶようにする
- @melpon

## 2023.5.1 (2023-05-16)

- [FIX] ソケット切断時にクラッシュすることがあるのを修正
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ https://github.com/shiguredo/sora-cpp-sdk/releases

## 動作環境

- windows_x86_64
- macos_arm64
- ubuntu-20.04_armv8
- Windows 10.1809 x86_64 以降
- macOS 13.3 arm64 以降
- Ubuntu 20.04 ARMv8 Jetson (Jetpack 5.0 以降)
- Jetson AGX Orin
- Jetson AGX Xavier
- Jetson Xavier NX
- ubuntu-22.04_x86_64
- ubuntu-20.04_x86_64
- android_arm64
- ios_arm64
- Ubuntu 20.04 x86_64
- Ubuntu 22.04 x86_64
- Android 7 arm64 以降
- iOS 13 arm64 以降

## サンプル集

Expand Down
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SORA_CPP_SDK_VERSION=2023.5.1
WEBRTC_BUILD_VERSION=m114.5735.0.1
SORA_CPP_SDK_VERSION=2023.6.0
WEBRTC_BUILD_VERSION=m114.5735.2.0
BOOST_VERSION=1.82.0
CMAKE_VERSION=3.25.3
BAZEL_VERSION=5.3.2
Expand Down
4 changes: 3 additions & 1 deletion src/hwenc_vpl/vpl_video_decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ std::unique_ptr<MFXVideoDECODE> VplVideoDecoderImpl::CreateDecoderInternal(
// << sts;
//}

if (init) {
// Query した上で Init しても MFX_ERR_UNSUPPORTED になることがあるので
// 本来 Init が不要な時も常に呼ぶようにして確認する
/*if (init)*/ {
// Initialize the oneVPL encoder
sts = decoder->Init(&param);
if (sts != MFX_ERR_NONE) {
Expand Down

0 comments on commit 60984f8

Please sign in to comment.