Skip to content

Commit

Permalink
Merge branch 'release/2023.13.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
melpon committed Sep 12, 2023
2 parents f524ddc + 257286e commit 5411cf6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 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

## 2023.13.1 (2023-09-12)

- [FIX] macOS で `AudioOutputHelper` を使おうとするとリンクエラーになっていたのを修正
- @melpon

## 2023.13.0 (2023-09-12)

- [ADD] iOS 向けに音声出力先変更機能として `AudioOutputHelper` を追加
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=2023.13.0
SORA_CPP_SDK_VERSION=2023.13.1
WEBRTC_BUILD_VERSION=m116.5845.6.1
BOOST_VERSION=1.82.0
CMAKE_VERSION=3.26.4
Expand Down
4 changes: 2 additions & 2 deletions src/audio_output_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// WebRTC
#include <rtc_base/logging.h>

#if defined(__APPLE__)
#if defined(SORA_CPP_SDK_IOS)
#include "sora/mac/mac_audio_output_helper.h"
#endif

Expand All @@ -23,7 +23,7 @@ class DummyAudioOutputHelper : public AudioOutputHelperInterface {

std::unique_ptr<AudioOutputHelperInterface> CreateAudioOutputHelper(
AudioChangeRouteObserver* observer) {
#if defined(__APPLE__)
#if defined(SORA_CPP_SDK_IOS)
return std::make_unique<MacAudioOutputHelper>(observer);
#else
return std::make_unique<DummyAudioOutputHelper>();
Expand Down

0 comments on commit 5411cf6

Please sign in to comment.