-
Notifications
You must be signed in to change notification settings - Fork 953
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #588 from tanhx2008/release-1.6.0
Release 1.6.0
- Loading branch information
Showing
23 changed files
with
147 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+32 KB
(100%)
PLDroidPlayerDemo/app/src/main/jniLibs/arm64-v8a/libpldroidplayer.so
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
PLDroidPlayerDemo/app/src/main/jniLibs/armeabi-v7a/libpldroidplayer.so
Binary file not shown.
Binary file modified
BIN
+8 KB
(100%)
PLDroidPlayerDemo/app/src/main/jniLibs/armeabi/libpldroidplayer.so
Binary file not shown.
Binary file modified
BIN
+8 KB
(100%)
PLDroidPlayerDemo/app/src/main/jniLibs/x86/libpldroidplayer.so
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# PLDroidPlayer Release Notes for 1.6.0 | ||
|
||
本次更新: | ||
|
||
## 版本 | ||
|
||
- 发布 pldroid-player-1.6.0.jar | ||
- 更新 libpldroidplayer.so | ||
|
||
## 功能 | ||
|
||
- 新增音视频播放时间戳回调 | ||
|
||
``` | ||
/** | ||
* The rendering video frame. | ||
* | ||
* pts per frame: unit: ms | ||
* | ||
* @see OnInfoListener | ||
*/ | ||
public static final int MEDIA_INFO_VIDEO_FRAME_RENDERING = 10004; | ||
/** | ||
* The rendering audio frame. | ||
* | ||
* pts per frame: unit: ms | ||
* | ||
* @see OnInfoListener | ||
*/ | ||
public static final int MEDIA_INFO_AUDIO_FRAME_RENDERING = 10005; | ||
// enable audio/video rendering msg callback | ||
int isEnablRenderingMsg = 1; | ||
mAVOptions.setInteger(AVOptions.KEY_AUDIO_RENDER_MSG, isEnablRenderingMsg); | ||
mAVOptions.setInteger(AVOptions.KEY_VIDEO_RENDER_MSG, isEnablRenderingMsg); | ||
``` | ||
|
||
- `MEDIA_INFO_VIDEO_RENDERING_START` 消息的 `extra` 参数附带首帧时间 | ||
- `MEDIA_INFO_AUDIO_RENDERING_START` 消息的 `extra` 参数附带首帧时间 | ||
- `OnPreparedListener` 消息的 `onPrepared` 接口增加 `preparedTime` 时间 | ||
- 新增 setVideoUri(Uri uri, Map<String, String> headers) 接口,支持自定义消息头 | ||
|
||
## 缺陷 | ||
|
||
- 修复部分场景下多线程同步导致的 QOS 模块 NPE 异常 | ||
- 兼容不支持 rtmp_live 参数的直播流播放 | ||
|
||
## 更新注意事项 | ||
|
||
- **不再需要在** build.gradle 中添加如下配置了: | ||
|
||
``` | ||
compile 'com.qiniu.pili:pili-android-qos:0.8.+' | ||
``` | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.