Skip to content

Commit e4869c9

Browse files
author
hzwangsiyu
authored
Merge pull request #157 from betallcoffee/2.2.2
2.2.2
2 parents e966e95 + f27c876 commit e4869c9

File tree

6 files changed

+76
-6
lines changed

6 files changed

+76
-6
lines changed

APIDiffs/api-diffs-2.2.2.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# PLPlayerKit 2.2.1 to 2.2.2 API Differences
2+
3+
## General Headers
4+
5+
```
6+
PLPlayer.h
7+
```
8+
- *Modified* `PLPlayer`
9+
- *Added* `@property (nonatomic,assign,getter = isAutoReconnectEnable) BOOL autoReconnectEnable;`
10+
- *Modified* `NS_ENUM(NSInteger, PLPlayerStatus)`
11+
- *Added* `PLPlayerStateAutoReconnecting`
12+

PLPlayerKit.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
Pod::Spec.new do |s|
1111
s.name = "PLPlayerKit"
12-
s.version = "2.2.1"
12+
s.version = "2.2.2"
1313
s.summary = "Pili iOS video player SDK, RTMP, HLS video streaming supported."
1414
s.homepage = "https://github.com/pili-engineering/PLPlayerKit"
1515
s.license = 'Apache License, Version 2.0'
@@ -22,7 +22,7 @@ Pod::Spec.new do |s|
2222
s.public_header_files = "Pod/Library/include/PLPlayerKit/*.h"
2323
s.source_files = 'Pod/Library/include/**/*.h'
2424

25-
s.dependency 'pili-librtmp'
25+
s.dependency 'pili-librtmp', '= 1.0.3.1'
2626
s.dependency 'HappyDNS'
2727
s.frameworks = ["UIKit", "Foundation", "CoreGraphics", "MediaPlayer", "CoreAudio", "AudioToolbox", "Accelerate", "QuartzCore", "OpenGLES", "AVFoundation"]
2828
s.libraries = "c++", "z", "bz2", "iconv"

Pod/Library/include/PLPlayerKit/PLPlayer.h

+16-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,13 @@ typedef NS_ENUM(NSInteger, PLPlayerStatus) {
7575
7676
@since v1.0.0
7777
*/
78-
PLPlayerStatusError
78+
PLPlayerStatusError,
79+
80+
/**
81+
* PLPlayer 自动重连的状态
82+
*/
83+
PLPlayerStateAutoReconnecting
84+
7985
};
8086

8187
@class PLPlayer;
@@ -215,6 +221,14 @@ typedef NS_ENUM(NSInteger, PLPlayerStatus) {
215221
*/
216222
@property (nonatomic, assign, readonly) CMTime totalDuration;
217223

224+
/**
225+
* 是否开启重连,默认为 NO
226+
*
227+
* @since v2.2.2
228+
*/
229+
@property (nonatomic,assign,getter = isAutoReconnectEnable) BOOL autoReconnectEnable;
230+
231+
218232
/**
219233
使用 url 和 option 生成一个 PLPlayer 对象
220234
@@ -239,6 +253,7 @@ typedef NS_ENUM(NSInteger, PLPlayerStatus) {
239253
*/
240254
- (nullable instancetype)initWithURL:(nullable NSURL *)URL option:(nullable PLPlayerOption *)option;
241255

256+
242257
/**
243258
开始播放
244259

Pod/Library/lib/libPLPlayerKit.a

15.3 MB
Binary file not shown.

README.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,25 @@ self.player.delegate = self;
138138
分辨可以检查是否可以播放以及当前 category 的设置是否可以后台播放。
139139

140140
## 版本历史
141-
- 2.2.1 ([Release Notes](https://github.com/pili-engineering/PLPlayerKit/blob/master/ReleaseNotes/release-notes-2.2.0.md) && [API Diffs](https://github.com/pili-engineering/PLPlayerKit/blob/master/APIDiffs/api-diffs-2.2.1.md))
141+
- 2.2.2 ([Release Notes](https://github.com/pili-engineering/PLPlayerKit/blob/master/ReleaseNotes/release-notes-2.2.2.md) && [API Diffs](https://github.com/pili-engineering/PLPlayerKit/blob/master/APIDiffs/api-diffs-2.2.2.md))
142+
- 功能
143+
- 新增 AAC HEV2 音频支持
144+
- 新增 SDK 自动重连功能,默认不开启
145+
- 缺陷
146+
- 修复长时间播放偶发解码 crash
147+
- 修复 pause/resmue 快速调用导致 crash
148+
- 修复重连未更换服务器 IP
149+
- 修复 rtmp 硬解播放视频抖动
150+
- 修复 flv 开始播放偶发黑屏
151+
- 修复 flv 超时机制失效
152+
- 2.2.1 ([Release Notes](https://github.com/pili-engineering/PLPlayerKit/blob/master/ReleaseNotes/release-notes-2.2.1.md) && [API Diffs](https://github.com/pili-engineering/PLPlayerKit/blob/master/APIDiffs/api-diffs-2.2.1.md))
142153
- 功能
143154
- 支持 SDK 日志级别设置
144155
- 新增 HappyDNS 支持
145156
- 缺陷
146157
- 修复回看状态不准确问题
147-
- 修复跳转第三方应用,出现内存增加
148-
- 修复播放卡住 caching 状态
158+
- 修复跳转第三方应用,出现内存增加
159+
- 修复播放卡住 caching 状态
149160
- 2.2.0 ([Release Notes](https://github.com/pili-engineering/PLPlayerKit/blob/master/ReleaseNotes/release-notes-2.2.0.md) && [API Diffs](https://github.com/pili-engineering/PLPlayerKit/blob/master/APIDiffs/api-diffs-2.2.0.md))
150161
- 功能
151162
- 新增硬解功能

ReleaseNotes/release-notes-2.2.2.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# PLPlayerKit Release Notes for 2.2.2
2+
3+
## 内容
4+
5+
- [简介](#简介)
6+
- [问题反馈](#问题反馈)
7+
- [记录](#记录)
8+
9+
## 简介
10+
11+
PLPlayerKit 为 iOS 开发者提供直播播放 SDK。
12+
13+
## 问题反馈
14+
15+
当你遇到任何问题时,可以通过在 GitHub 的 repo 提交 ```issues``` 来反馈问题,请尽可能的描述清楚遇到的问题,如果有错误信息也一同附带,并且在 ```Labels``` 中指明类型为 bug 或者其他。
16+
17+
[通过这里查看已有的 issues 和提交 Bug](https://github.com/pili-engineering/PLPlayerKit/issues)
18+
19+
## 记录
20+
21+
### Player
22+
23+
- 功能
24+
- 新增 AAC HEV2 音频支持
25+
- 新增 SDK 自动重连功能,默认不开启
26+
- 缺陷
27+
- 修复长时间播放偶发解码 crash
28+
- 修复 pause/resmue 快速调用导致 crash
29+
- 修复重连未更换服务器 IP
30+
- 修复 rtmp 硬解播放视频抖动
31+
- 修复 flv 开始播放偶发黑屏
32+
- 修复 flv 超时机制失效

0 commit comments

Comments
 (0)