Skip to content

Commit 1334a26

Browse files
committed
Merge branch 'release/2021.3'
2 parents 73df0ff + d31192f commit 1334a26

File tree

17 files changed

+27
-27
lines changed

17 files changed

+27
-27
lines changed

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@
1111

1212
## develop
1313

14+
## 2021.3
15+
16+
- [UPDATE] `libwebrtc``M90.4430@{#3}` に上げる
17+
- @voluntas
18+
- [UPDATE] Boost 1.76.0 に上げる
19+
- @voluntas
20+
- [UPDATE] cmake を 3.20.1 に上げる
21+
- @voluntas
22+
- [FIX] サイマルキャストのエラー・メッセージで示されていたオプションが古かったので修正する
23+
- @enm10k
24+
1425
## 2021.2.3
1526

1627
- [UPDATE] cmake を 3.20.0 に上げる

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ elseif (TARGET_OS STREQUAL "linux")
552552
WEBRTC_POSIX
553553
)
554554
# Linux 系の場合はカスタムされた libc++ を使っているためオプション追加
555-
target_compile_definitions(momo PRIVATE _LIBCPP_ABI_UNSTABLE)
555+
target_compile_definitions(momo PRIVATE _LIBCPP_ABI_UNSTABLE _LIBCPP_DISABLE_AVAILABILITY)
556556

557557
set_target_properties(momo PROPERTIES POSITION_INDEPENDENT_CODE ON)
558558
target_link_libraries(momo

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WebRTC Native Client Momo
22

3-
[![libwebrtc](https://img.shields.io/badge/libwebrtc-m89.4389-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/4389)
3+
[![libwebrtc](https://img.shields.io/badge/libwebrtc-m90.4430-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/4430)
44
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/shiguredo/momo.svg)](https://github.com/shiguredo/momo)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66
[![Actions Status](https://github.com/shiguredo/momo/workflows/daily-build-workflow/badge.svg)](https://github.com/shiguredo/momo/actions)
@@ -253,6 +253,6 @@ H.264 ハードウェアエンコーダ **のみ** を利用している Momo
253253
- NVIDIA Jetson Nano のハードウェアエンコーダのライセンス費用は別途、団体との契約が必要
254254
- [NVIDIA Jetson Nano 搭載の H\.264/H\.265 ハードウェアエンコーダのライセンスについて](https://medium.com/@voluntas/nvidia-jetson-nano-%E6%90%AD%E8%BC%89%E3%81%AE-h-264-h-265-%E3%83%8F%E3%83%BC%E3%83%89%E3%82%A6%E3%82%A7%E3%82%A2%E3%82%A8%E3%83%B3%E3%82%B3%E3%83%BC%E3%83%80%E3%81%AE%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6-ca207af302ee)
255255
- Intel Quick Sync Video のハードウェアエンコーダライセンス費用は別途、団体との契約が必要
256-
- [QuickSync \- H\.264 patent licensing fees](https://software.intel.com/en-us/forums/intel-media-sdk/topic/494720)
256+
- [QuickSync \- H\.264 patent licensing fees \- Intel Community](https://community.intel.com/t5/Media-Intel-oneAPI-Video/QuickSync-H-264-patent-licensing-fees/td-p/921396)
257257

258258

VERSION

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
MOMO_VERSION=2021.2.3
2-
WEBRTC_BUILD_VERSION=89.4389.7.0
3-
BOOST_VERSION=1.75.0
1+
MOMO_VERSION=2021.3
2+
WEBRTC_BUILD_VERSION=90.4430.3.1
3+
BOOST_VERSION=1.76.0
44
CLI11_VERSION=1.9.1
55
SDL2_VERSION=2.0.14
6-
CMAKE_VERSION=3.20.0
6+
CMAKE_VERSION=3.20.1
77
CUDA_VERSION=11.0.2-1

build/raspberry-pi-os_armv6/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ RUN \
4646
&& ./b2 \
4747
cxxflags=' \
4848
-D_LIBCPP_ABI_UNSTABLE \
49+
-D_LIBCPP_DISABLE_AVAILABILITY \
4950
-nostdinc++ \
5051
-isystem/root/llvm/libcxx/include \
5152
--target=arm-linux-gnueabihf \

build/raspberry-pi-os_armv7/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ RUN \
4646
&& ./b2 \
4747
cxxflags=' \
4848
-D_LIBCPP_ABI_UNSTABLE \
49+
-D_LIBCPP_DISABLE_AVAILABILITY \
4950
-nostdinc++ \
5051
-isystem/root/llvm/libcxx/include \
5152
--target=arm-linux-gnueabihf \

build/raspberry-pi-os_armv8/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ RUN \
4646
&& ./b2 \
4747
cxxflags=' \
4848
-D_LIBCPP_ABI_UNSTABLE \
49+
-D_LIBCPP_DISABLE_AVAILABILITY \
4950
-nostdinc++ \
5051
-isystem/root/llvm/libcxx/include \
5152
--target=aarch64-linux-gnu \

build/ubuntu-18.04_armv8_jetson_nano/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ RUN \
5151
&& ./b2 \
5252
cxxflags=' \
5353
-D_LIBCPP_ABI_UNSTABLE \
54+
-D_LIBCPP_DISABLE_AVAILABILITY \
5455
-nostdinc++ \
5556
-isystem/root/llvm/libcxx/include \
5657
--target=aarch64-linux-gnu \

build/ubuntu-18.04_armv8_jetson_xavier/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ RUN \
5151
&& ./b2 \
5252
cxxflags=' \
5353
-D_LIBCPP_ABI_UNSTABLE \
54+
-D_LIBCPP_DISABLE_AVAILABILITY \
5455
-nostdinc++ \
5556
-isystem/root/llvm/libcxx/include \
5657
--target=aarch64-linux-gnu \

build/ubuntu-18.04_x86_64/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ RUN \
4040
&& ./b2 \
4141
cxxflags=' \
4242
-D_LIBCPP_ABI_UNSTABLE \
43+
-D_LIBCPP_DISABLE_AVAILABILITY \
4344
-nostdinc++ \
4445
-isystem/root/llvm/libcxx/include \
4546
' \

0 commit comments

Comments
 (0)