提交 4fb0c80b 编写于 作者: S shuyu

2.0.8 release (2017-09-17)

上级 8a01fee9
...@@ -63,32 +63,32 @@ dependencies { ...@@ -63,32 +63,32 @@ dependencies {
compile project(':gsyVideoPlayer') compile project(':gsyVideoPlayer')
//jcenter //jcenter
//compile 'com.shuyu:GSYVideoPlayer:2.0.7' //compile 'com.shuyu:GSYVideoPlayer:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-java:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-java:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-x64:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-x64:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-x86:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-x86:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-ex_so:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-ex_so:2.0.8'
//jitpack //jitpack
//compile 'com.github.CarGuo:GSYVideoPlayer:v2.0.7' //compile 'com.github.CarGuo:GSYVideoPlayer:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v2.0.8'
//compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v2.0.7' //compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v2.0.8'
} }
...@@ -25,12 +25,15 @@ import com.shuyu.gsyvideoplayer.effect.DocumentaryEffect; ...@@ -25,12 +25,15 @@ import com.shuyu.gsyvideoplayer.effect.DocumentaryEffect;
import com.shuyu.gsyvideoplayer.effect.DuotoneEffect; import com.shuyu.gsyvideoplayer.effect.DuotoneEffect;
import com.shuyu.gsyvideoplayer.effect.FillLightEffect; import com.shuyu.gsyvideoplayer.effect.FillLightEffect;
import com.shuyu.gsyvideoplayer.effect.GammaEffect; import com.shuyu.gsyvideoplayer.effect.GammaEffect;
import com.shuyu.gsyvideoplayer.effect.GaussianBlurEffect;
import com.shuyu.gsyvideoplayer.effect.GrainEffect; import com.shuyu.gsyvideoplayer.effect.GrainEffect;
import com.shuyu.gsyvideoplayer.effect.HueEffect; import com.shuyu.gsyvideoplayer.effect.HueEffect;
import com.shuyu.gsyvideoplayer.effect.InvertColorsEffect; import com.shuyu.gsyvideoplayer.effect.InvertColorsEffect;
import com.shuyu.gsyvideoplayer.effect.LamoishEffect; import com.shuyu.gsyvideoplayer.effect.LamoishEffect;
import com.shuyu.gsyvideoplayer.effect.NoEffect; import com.shuyu.gsyvideoplayer.effect.NoEffect;
import com.shuyu.gsyvideoplayer.effect.OverlayEffect;
import com.shuyu.gsyvideoplayer.effect.PosterizeEffect; import com.shuyu.gsyvideoplayer.effect.PosterizeEffect;
import com.shuyu.gsyvideoplayer.effect.SampleBlurEffect;
import com.shuyu.gsyvideoplayer.effect.SaturationEffect; import com.shuyu.gsyvideoplayer.effect.SaturationEffect;
import com.shuyu.gsyvideoplayer.effect.SepiaEffect; import com.shuyu.gsyvideoplayer.effect.SepiaEffect;
import com.shuyu.gsyvideoplayer.effect.SharpnessEffect; import com.shuyu.gsyvideoplayer.effect.SharpnessEffect;
...@@ -248,10 +251,19 @@ public class DetailFilterActivity extends GSYBaseActivityDetail { ...@@ -248,10 +251,19 @@ public class DetailFilterActivity extends GSYBaseActivityDetail {
case 22: case 22:
effect = new NoEffect(); effect = new NoEffect();
break; break;
case 23:
effect = new OverlayEffect();
break;
case 24:
effect = new SampleBlurEffect(4.0f);
break;
case 25:
effect = new GaussianBlurEffect(6.0f, GaussianBlurEffect.TYPEXY);
break;
} }
detailPlayer.setEffectFilter(effect); detailPlayer.setEffectFilter(effect);
type++; type++;
if (type > 22) { if (type > 25) {
type = 0; type = 0;
} }
} }
......
...@@ -68,7 +68,7 @@ allprojects { ...@@ -68,7 +68,7 @@ allprojects {
#### A、直接引入 #### A、直接引入
``` ```
//完整版引入 //完整版引入
compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.8'
``` ```
...@@ -76,14 +76,14 @@ compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.7' ...@@ -76,14 +76,14 @@ compile 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v2.0.7'
``` ```
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.8'
//根据你的需求 //根据你的需求
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x64:v2.0.8'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-x86:v2.0.8'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-arm64:v2.0.8'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv5:v2.0.8'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-armv7a:v2.0.8'
``` ```
...@@ -93,8 +93,8 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情 ...@@ -93,8 +93,8 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 方法引入的so支持mpeg编码和其他补充协议,但是so包相对变大。 C 方法引入的so支持mpeg编码和其他补充协议,但是so包相对变大。
``` ```
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-java:v2.0.8'
compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.7' compile 'com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer-ex_so:v2.0.8'
``` ```
...@@ -31,26 +31,26 @@ android { ...@@ -31,26 +31,26 @@ android {
dependencies { dependencies {
compile fileTree(dir: 'libs', include: ['*.jar']) compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':gsyVideoPlayer-java') //compile project(':gsyVideoPlayer-java')
compile project(':gsyVideoPlayer-armv5') //compile project(':gsyVideoPlayer-armv5')
compile project(':gsyVideoPlayer-armv7a') //compile project(':gsyVideoPlayer-armv7a')
compile project(':gsyVideoPlayer-armv64') //compile project(':gsyVideoPlayer-armv64')
compile project(':gsyVideoPlayer-x86') //compile project(':gsyVideoPlayer-x86')
compile project(':gsyVideoPlayer-x86_64') //compile project(':gsyVideoPlayer-x86_64')
//更多配置版so,增加了concat,rtsp,mpeg,crypto //更多配置版so,增加了concat,rtsp,mpeg,crypto
//compile project(':gsyVideoPlayer-ex_so') //compile project(':gsyVideoPlayer-ex_so')
//compile 'com.shuyu:gsyVideoPlayer-java:2.0.7' compile 'com.shuyu:gsyVideoPlayer-java:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.7' compile 'com.shuyu:gsyVideoPlayer-armv5:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.7' compile 'com.shuyu:gsyVideoPlayer-armv7a:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.7' compile 'com.shuyu:gsyVideoPlayer-arm64:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-x64:2.0.7' compile 'com.shuyu:gsyVideoPlayer-x64:2.0.8'
//compile 'com.shuyu:gsyVideoPlayer-x86:2.0.7' compile 'com.shuyu:gsyVideoPlayer-x86:2.0.8'
//更多配置版so,增加了concat,rtsp,mpeg,crypto //更多配置版so,增加了concat,rtsp,mpeg,crypto
//compile 'com.shuyu:gsyVideoPlayer-ex_so:2.0.7' //compile 'com.shuyu:gsyVideoPlayer-ex_so:2.0.8'
} }
apply from: './bintray.gradle' apply from: './bintray.gradle'
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册