Skip to content

Commit 2792080

Browse files
Merge branch 'release/v0.2.4'
2 parents 0dc179e + 2d1e4b0 commit 2792080

File tree

9 files changed

+14
-17
lines changed

9 files changed

+14
-17
lines changed
Binary file not shown.
0 Bytes
Binary file not shown.

FFmpegAndroid/assets/x86/ffmpeg

4 KB
Binary file not shown.

FFmpegAndroid/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.github.hiteshsondhi88.libffmpeg"
99
minSdkVersion 16
1010
targetSdkVersion 16
11-
versionCode 23
12-
versionName "0.2.3"
11+
versionCode 24
12+
versionName "0.2.4"
1313
}
1414

1515
sourceSets.main {
+2-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.github.hiteshsondhi88.libffmpeg">
1+
<manifest package="com.github.hiteshsondhi88.libffmpeg">
32

4-
<application
5-
android:label="@string/app_name">
6-
</application>
3+
<application />
74

85
</manifest>

FFmpegAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg/CpuArch.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import android.text.TextUtils;
44

55
enum CpuArch {
6-
x86("a0f523f4fce7e4a4b0ad1e86dfa5c3d54ac93b91"),
7-
ARMv7("6b9b3d574740d69fd50fd6d75e04c71ae3a95c72"),
8-
ARMv7_NEON("ac0418277061dc8b7547fee51e3e84457069806e"),
6+
x86("1b3daf0402c38ec0019ec436d71a1389514711bd"),
7+
ARMv7("e27cf3c432b121896fc8af2d147eff88d3074dd5"),
8+
ARMv7_NEON("9463c40e898c53dcac59b8ba39cfd590e2f1b1bf"),
99
NONE(null);
1010

1111
private String sha1;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
12
<resources>
2-
<string name="app_name">FFmpegAndroid</string>
3-
<string name="shipped_ffmpeg_version">n2.4</string>
4-
</resources>
3+
<string name="shipped_ffmpeg_version">n2.4.2</string>
4+
</resources>

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.github.hiteshsondhi88.sampleffmpeg"
99
minSdkVersion 16
1010
targetSdkVersion 20
11-
versionCode 23
12-
versionName "0.2.3"
11+
versionCode 24
12+
versionName "0.2.4"
1313
}
1414

1515
sourceSets.main {

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=0.2.3
2-
VERSION_CODE=23
1+
VERSION_NAME=0.2.4
2+
VERSION_CODE=24
33
GROUP=com.github.hiteshsondhi88.libffmpeg
44

55
POM_DESCRIPTION=Java implementation of ffmpeg for Android

0 commit comments

Comments
 (0)