Skip to content

Commit

Permalink
Merge pull request #48 from ksvc/3.3.2.0
Browse files Browse the repository at this point in the history
add to 3.3.2.0
  • Loading branch information
chriszeng87 authored Sep 8, 2016
2 parents 7152149 + a4ceb74 commit 7153121
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 1 deletion.
Binary file modified demo/libs/armeabi-v7a/libksyplayer.so
Binary file not shown.
Binary file modified demo/libs/armeabi-v7a/libksystreamer.so
Binary file not shown.
Binary file modified demo/libs/ksylive3.0.jar
Binary file not shown.
Binary file modified demo/libs/libksyplayer.jar
Binary file not shown.
9 changes: 9 additions & 0 deletions demo/src/com/ksy/recordlib/demo/CameraActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ public void handleMessage(Message msg) {
case RecorderConstants.KSYVIDEO_OPEN_CAMERA_FAIL:
case RecorderConstants.KSYVIDEO_CAMERA_PARAMS_ERROR:
case RecorderConstants.KSYVIDEO_AUDIO_START_FAILED:
case RecorderConstants.KSYVIDEO_AV_SYNC_ERROR:
Toast.makeText(CameraActivity.this, content,
Toast.LENGTH_LONG).show();
chronometer.stop();
Expand Down Expand Up @@ -777,6 +778,14 @@ public void onError(int what, int arg1, int arg2, String msg) {
}
needRetry = false;
break;
case RecorderConstants.KSYVIDEO_AV_SYNC_ERROR:
Log.e(TAG, "the streaming stopped because KSYVIDEO_AV_SYNC_ERROR, pts diff:" +
String.valueOf(arg1));
if (mHandler != null) {
mHandler.obtainMessage(what, msg).sendToTarget();
}
needRetry = false;
break;
default:
break;
}
Expand Down
Binary file modified libs/arm64-v8a/libksyplayer.so
Binary file not shown.
Binary file modified libs/arm64-v8a/libksystreamer.so
Binary file not shown.
Binary file modified libs/armeabi-v7a/libksyplayer.so
Binary file not shown.
Binary file modified libs/armeabi-v7a/libksystreamer.so
Binary file not shown.
Binary file modified libs/ksylive3.0.jar
Binary file not shown.
Binary file modified libs/libksyplayer.jar
Binary file not shown.
Binary file modified libs/x86/libksyplayer.so
Binary file not shown.
Binary file modified libs/x86/libksystreamer.so
Binary file not shown.
8 changes: 7 additions & 1 deletion release_note.txt
Original file line number Diff line number Diff line change
Expand Up @@ -229,4 +229,10 @@
2016-08-22 3.3.1.0
118. 增加推流过程中动态修改前置摄像头镜像功能
119. 修改硬编码率自适应始终为true的问题
120. 升级libksyplayer.jar为1.4.6版本
120. 升级libksyplayer.jar为1.4.6版本

2016-09-6 3.3.2.0
121. 修复魅族pro5 5.1.9.0A版本固件上预览黑屏的bug
122. 修复软编偶现crash问题
123. 特殊情况下,音视频不同步时上报给APP
124. 升级libksyplayer.jar为1.5.0版本

0 comments on commit 7153121

Please sign in to comment.