提交 9c84ec92 编写于 作者: S shuyu

2.0.5 prerare (2017-08-26)

上级 c07794ad
......@@ -14,23 +14,9 @@
对于视频相关的,推荐雷宵骅的视频基础:[视音频编解码技术零基础学习方法](http://blog.csdn.net/leixiaohua1020/article/details/18893769),这里你可以了解到视频和音频相关编码和协议的东西。
项目普通so默认支持的视频编码和音频编码有如下,更多详细配置可查看[编译配置文件](https://github.com/CarGuo/GSYVideoPlayer/blob/master/module-lite-hevc.sh)
```
--enable-decoder=aac"
--enable-decoder=aac_latm"
--enable-decoder=flv"
--enable-decoder=h263"
--enable-decoder=h263i"
--enable-decoder=h263p"
--enable-decoder=h264"
--enable-decoder=mp3*"
--enable-decoder=vp6"
--enable-decoder=vp6a"
--enable-decoder=vp6f"
--enable-decoder=hevc"
```
项目普通so默认支持的视频编码和音频编码配置可查看[编译配置文件](https://github.com/CarGuo/GSYVideoPlayer/blob/master/module-lite-hevc.sh)
ex_so支持的视频编码和音频编码配置可查看[编译配置文件](https://github.com/CarGuo/GSYVideoPlayer/blob/master/module-lite-more.sh)
ex_so多支持了mepg、concat协议,crypto协议。
......
......@@ -34,21 +34,21 @@
#### A、直接引入
```
//完整版引入
compile 'com.shuyu:GSYVideoPlayer:2.0.4'
compile 'com.shuyu:GSYVideoPlayer:2.0.5'
```
#### B、添加java和你想要的so支持:
```
compile 'com.shuyu:gsyVideoPlayer-java:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-java:2.0.5'
//根据你的需求
compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-x64:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-x86:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-x64:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-x86:2.0.5'
```
......@@ -58,9 +58,9 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
compile 'com.shuyu:gsyVideoPlayer-java:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-java:2.0.5'
compile 'com.shuyu:gsyVideoPlayer-ex_so:2.0.4'
compile 'com.shuyu:gsyVideoPlayer-ex_so:2.0.5'
```
......@@ -95,7 +95,7 @@ allprojects {
#### A、直接引入
```
//完整版引入
compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.5'
```
......@@ -103,14 +103,14 @@ compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.4'
```
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.5'
//根据你的需求
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v2.0.5'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v2.0.5'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v2.0.5'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v2.0.5'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v2.0.5'
```
......@@ -120,9 +120,9 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 方法引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
```
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.5'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.4'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.5'
```
......@@ -172,20 +172,10 @@ compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.4'
## 近期版本
### 2.0.4(2017-08-08)
* 增加了空播放ui支持。
* 调整了GSYVideoOptionBuilder。
* 修改了已知问题。
* 增加了播放中调整播放速度接口。
```
public void setSpeedPlaying(float speed, boolean soundTouch)
```
### 2.0.3(2017-08-06)
* update ijk to 0.8.2
* fix rtsp 播放问题
* fix 小窗口播放问题
* 调整了部分代码逻辑与结构。
### 2.0.5(2017-08-26)
* 增加双击暂停开始。
* 增加了SurfaceView的支持:GSYVideoType.setRenderType(GSYVideoType.SUFRACE)。
* 优化了触摸问题、内存问题、dismisstime问题。
### 更多版本请查阅:[版本更新说明](https://github.com/CarGuo/GSYVideoPlayer/blob/master/UPDATE_VERSION.md)
......
## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。
### 2.0.5(2017-08-26)
* 增加双击暂停开始。
* 增加了SurfaceView的支持:GSYVideoType.setRenderType(GSYVideoType.SUFRACE)。
* 优化了触摸问题、内存问题、dismisstime问题。
### 2.0.4(2017-08-08)
* 增加了空播放ui支持。
......
......@@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx1536m
BINTRAY_USER=carguo
BINTRAY_KEY=
PROJ_GROUP=com.shuyu
PROJ_VERSION=2.0.4
PROJ_VERSION=2.0.5
PROJ_WEBSITEURL=https://github.com/CarGuo/GSYVideoPlayer
PROJ_ISSUETRACKERURL=
PROJ_VCSURL=git@github.com:CarGuo/GSYVideoPlayer.git
......
......@@ -713,6 +713,9 @@ public abstract class GSYVideoControlView extends GSYVideoView implements View.O
* 如果不需要,重载为空方法即可
*/
protected void touchDoubleUp() {
if (!mHadPlay) {
return;
}
mTapCount++;
if (mTapCount == 1) {
mFirstTapTime = System.currentTimeMillis();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册