Skip to content

Commit

Permalink
Merge pull request #36 from shiguredo/feature/update-cpp-sdk-2023.13.1
Browse files Browse the repository at this point in the history
C++ SDK を 2023.13.1 に上げる
  • Loading branch information
miosakuma committed Sep 21, 2023
2 parents 5affb07 + 7d16f93 commit a23bbd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
- @tnoho
- [ADD] AudioStreamSink が返す音声フレームとして pickel が可能な AudioFrame を追加
- @tnoho
- [UPDATE] Sora C++ SDK のバージョンを 2023.10.0 に上げる
- @voluntas
- [UPDATE] Sora C++ SDK のバージョンを 2023.13.1 に上げる
- WebRTC m116 で cricket::Codec は protected になったので cricket::CreateVideoCodec に修正する
- @voluntas @miosakuma

## 2023.3.1

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.10.0
WEBRTC_BUILD_VERSION=m115.5790.7.0
SORA_CPP_SDK_VERSION=2023.13.1
WEBRTC_BUILD_VERSION=m116.5845.6.1
BOOST_VERSION=1.82.0
LYRA_VERSION=1.3.0
CMAKE_VERSION=3.26.4
Expand Down
2 changes: 1 addition & 1 deletion src/sora_factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ SoraFactory::SoraFactory(std::optional<bool> use_hardware_encoder,
[openh264 = openh264](
auto format) -> std::unique_ptr<webrtc::VideoEncoder> {
return webrtc::DynamicH264Encoder::Create(
cricket::VideoCodec(format), *openh264);
cricket::CreateVideoCodec(format), *openh264);
}));
media_dependencies.video_encoder_factory =
absl::make_unique<sora::SoraVideoEncoderFactory>(
Expand Down

0 comments on commit a23bbd4

Please sign in to comment.