Skip to content

Commit 14008f3

Browse files
author
jeffgaogao
committed
docs(TcgSdk): release 3.14.0
1 parent 1aa89a7 commit 14008f3

File tree

5 files changed

+21
-1
lines changed

5 files changed

+21
-1
lines changed

Doc/Release_Notes_EN-US.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[中文文档](历史版本.md)
22

3+
### Version 3.14.0 (2025-12.10)
4+
Features
5+
- Added setRemoteVideoProfile:minBitrate:maxBitrate:width:height interface to TcrSession
6+
37
### Version 3.13.1 (2025-12.9)
48
Bug Fixes
59
- Fix and optimize some known issues

Doc/历史版本.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[English document](Release_Notes_EN-US.md)
22

3+
### Version 3.14.0 (2025-12.10)
4+
Features
5+
- TcrSession新增setRemoteVideoProfile:minBitrate:maxBitrate:width:height接口
6+
37
### Version 3.13.1 (2025-12.9)
48
Bug Fixes
59
- 修复和优化一些已知问题

SDK/TCRSDK.framework/Headers/TcrSession.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,18 @@
187187

188188
- (void)setRemoteVideoProfile:(int)fps minBitrate:(int)minBitrate maxBitrate:(int)maxBitrate DEPRECATED_MSG_ATTRIBUTE();
189189

190+
/**
191+
* Set the remote video profile.
192+
*
193+
* @param fps The frame rate. Value range: [10,60]. Default value: `60`.
194+
* @param minBitrate The minimum bitrate in Kbps. Value range: [1000,15000]. Default value: `1000`.
195+
* @param maxBitrate The maximum bitrate in Kbps. Value range: [1000,15000]. Default value: `15000`.
196+
* @param width The video resolution width. Valid range: 128 to 1920 pixels.
197+
* @param height The video resolution height. Valid range: 128 to 1920 pixels.
198+
*/
199+
200+
- (void)setRemoteVideoProfile:(int)fps minBitrate:(int)minBitrate maxBitrate:(int)maxBitrate width:(int)width height:(int)height;
201+
190202
/**
191203
* Set the local video profile.
192204
*

SDK/TCRSDK.framework/TCRSDK

224 Bytes
Binary file not shown.

TCRSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'TCRSDK'
3-
spec.version = '3.13.1'
3+
spec.version = '3.14.0'
44
spec.license = { :type => 'MIT' }
55
spec.homepage = 'https://github.com/tencentyun/cloudgame-ios-sdk'
66
spec.summary = 'Tencent Cloud Gaming Software Development Kit for iOS.'

0 commit comments

Comments
 (0)