Skip to content

Commit

Permalink
Merge branch 'release/v0.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
hiteshsondhi88 committed Oct 7, 2014
2 parents 0dc179e + 2d1e4b0 commit 2792080
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 17 deletions.
Binary file modified FFmpegAndroid/assets/armeabi-v7a-neon/ffmpeg
Binary file not shown.
Binary file modified FFmpegAndroid/assets/armeabi-v7a/ffmpeg
Binary file not shown.
Binary file modified FFmpegAndroid/assets/x86/ffmpeg
Binary file not shown.
4 changes: 2 additions & 2 deletions FFmpegAndroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.github.hiteshsondhi88.libffmpeg"
minSdkVersion 16
targetSdkVersion 16
versionCode 23
versionName "0.2.3"
versionCode 24
versionName "0.2.4"
}

sourceSets.main {
Expand Down
7 changes: 2 additions & 5 deletions FFmpegAndroid/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.hiteshsondhi88.libffmpeg">
<manifest package="com.github.hiteshsondhi88.libffmpeg">

<application
android:label="@string/app_name">
</application>
<application />

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import android.text.TextUtils;

enum CpuArch {
x86("a0f523f4fce7e4a4b0ad1e86dfa5c3d54ac93b91"),
ARMv7("6b9b3d574740d69fd50fd6d75e04c71ae3a95c72"),
ARMv7_NEON("ac0418277061dc8b7547fee51e3e84457069806e"),
x86("1b3daf0402c38ec0019ec436d71a1389514711bd"),
ARMv7("e27cf3c432b121896fc8af2d147eff88d3074dd5"),
ARMv7_NEON("9463c40e898c53dcac59b8ba39cfd590e2f1b1bf"),
NONE(null);

private String sha1;
Expand Down
6 changes: 3 additions & 3 deletions FFmpegAndroid/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">FFmpegAndroid</string>
<string name="shipped_ffmpeg_version">n2.4</string>
</resources>
<string name="shipped_ffmpeg_version">n2.4.2</string>
</resources>
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.github.hiteshsondhi88.sampleffmpeg"
minSdkVersion 16
targetSdkVersion 20
versionCode 23
versionName "0.2.3"
versionCode 24
versionName "0.2.4"
}

sourceSets.main {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=0.2.3
VERSION_CODE=23
VERSION_NAME=0.2.4
VERSION_CODE=24
GROUP=com.github.hiteshsondhi88.libffmpeg

POM_DESCRIPTION=Java implementation of ffmpeg for Android
Expand Down

0 comments on commit 2792080

Please sign in to comment.