Skip to content

Commit

Permalink
Merge branch 'release/2022.7.8' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Jul 24, 2022
2 parents 14281da + 7146577 commit 7e70a3b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@

## develop

## 2022.7.8 (2022-07-25)

- [FIX] NVDEC のデコードの画像サイズが変わった時に即時で追従するように修正
- @melpon

## 2022.7.7 (2022-07-23)

- [FIX] カメラの無い Android 端末でカメラを利用しようとすると落ちるのを修正
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SORA_CPP_SDK_VERSION=2022.7.7
SORA_CPP_SDK_VERSION=2022.7.8
WEBRTC_BUILD_VERSION=m103.5060.5.0
BOOST_VERSION=1.79.0
CMAKE_VERSION=3.23.1
Expand Down
4 changes: 3 additions & 1 deletion src/hwenc_nvcodec/nvcodec_decoder_cuda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ NvCodecDecoderCuda::NvCodecDecoderCuda(std::shared_ptr<CudaContext> ctx,
nullptr,
nullptr,
3840,
3840)) {
3840,
1000,
true)) {
// このコーデックでデコード可能かどうかを調べる
CUVIDDECODECAPS decodecaps;
memset(&decodecaps, 0, sizeof(decodecaps));
Expand Down

0 comments on commit 7e70a3b

Please sign in to comment.