-
Notifications
You must be signed in to change notification settings - Fork 828
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
360 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
POM_NAME=FFmpegAndroid Library | ||
POM_ARTIFACT_ID=FFmpegAndroid | ||
POM_PACKAGING=aar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+24 Bytes
(100%)
FFmpegAndroid/obj/local/armeabi-v7a/objs/ARM_ARCH/armArch.o
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...teshsondhi88/libffmpeg/ArmArchHelper.java → ...teshsondhi88/libffmpeg/ArmArchHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...teshsondhi88/libffmpeg/CommandResult.java → ...teshsondhi88/libffmpeg/CommandResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...hub/hiteshsondhi88/libffmpeg/CpuArch.java → ...hub/hiteshsondhi88/libffmpeg/CpuArch.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...teshsondhi88/libffmpeg/CpuArchHelper.java → ...teshsondhi88/libffmpeg/CpuArchHelper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package github.hiteshsondhi88.libffmpeg; | ||
package com.github.hiteshsondhi88.libffmpeg; | ||
|
||
import android.os.Build; | ||
|
||
|
29 changes: 29 additions & 0 deletions
29
...droid/src/main/java/com/github/hiteshsondhi88/libffmpeg/ExecuteBinaryResponseHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.github.hiteshsondhi88.libffmpeg; | ||
|
||
public class ExecuteBinaryResponseHandler implements FFmpegExecuteResponseHandler { | ||
|
||
@Override | ||
public void onSuccess(String message) { | ||
|
||
} | ||
|
||
@Override | ||
public void onProgress(String message) { | ||
|
||
} | ||
|
||
@Override | ||
public void onFailure(String message) { | ||
|
||
} | ||
|
||
@Override | ||
public void onStart() { | ||
|
||
} | ||
|
||
@Override | ||
public void onFinish() { | ||
|
||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...thub/hiteshsondhi88/libffmpeg/FFmpeg.java → ...thub/hiteshsondhi88/libffmpeg/FFmpeg.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...droid/src/main/java/com/github/hiteshsondhi88/libffmpeg/FFmpegExecuteResponseHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.github.hiteshsondhi88.libffmpeg; | ||
|
||
public interface FFmpegExecuteResponseHandler extends ResponseHandler { | ||
|
||
/** | ||
* on Success | ||
* @param message complete output of the FFmpeg command | ||
*/ | ||
public void onSuccess(String message); | ||
|
||
/** | ||
* on Progress | ||
* @param message current output of FFmpeg command | ||
*/ | ||
public void onProgress(String message); | ||
|
||
/** | ||
* on Failure | ||
* @param message complete output of the FFmpeg command | ||
*/ | ||
public void onFailure(String message); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 8 additions & 1 deletion
9
...mpeg/FFmpegLoadBinaryResponseHandler.java → ...mpeg/FFmpegLoadBinaryResponseHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
package github.hiteshsondhi88.libffmpeg; | ||
package com.github.hiteshsondhi88.libffmpeg; | ||
|
||
public interface FFmpegLoadBinaryResponseHandler extends ResponseHandler { | ||
|
||
/** | ||
* on Fail | ||
*/ | ||
public void onFailure(); | ||
|
||
/** | ||
* on Success | ||
*/ | ||
public void onSuccess(); | ||
|
||
} |
4 changes: 2 additions & 2 deletions
4
...libffmpeg/FFmpegLoadLibraryAsyncTask.java → ...libffmpeg/FFmpegLoadLibraryAsyncTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...b/hiteshsondhi88/libffmpeg/FileUtils.java → ...b/hiteshsondhi88/libffmpeg/FileUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...gAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg/LoadBinaryResponseHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.github.hiteshsondhi88.libffmpeg; | ||
|
||
public class LoadBinaryResponseHandler implements FFmpegLoadBinaryResponseHandler { | ||
|
||
@Override | ||
public void onFailure() { | ||
|
||
} | ||
|
||
@Override | ||
public void onSuccess() { | ||
|
||
} | ||
|
||
@Override | ||
public void onStart() { | ||
|
||
} | ||
|
||
@Override | ||
public void onFinish() { | ||
|
||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
.../github/hiteshsondhi88/libffmpeg/Log.java → .../github/hiteshsondhi88/libffmpeg/Log.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
FFmpegAndroid/src/main/java/com/github/hiteshsondhi88/libffmpeg/ResponseHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.github.hiteshsondhi88.libffmpeg; | ||
|
||
abstract interface ResponseHandler { | ||
|
||
/** | ||
* on Start | ||
*/ | ||
public void onStart(); | ||
|
||
/** | ||
* on Finish | ||
*/ | ||
public void onFinish(); | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
...iteshsondhi88/libffmpeg/ShellCommand.java → ...iteshsondhi88/libffmpeg/ShellCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...github/hiteshsondhi88/libffmpeg/Util.java → ...github/hiteshsondhi88/libffmpeg/Util.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...FFmpegCommandAlreadyRunningException.java → ...FFmpegCommandAlreadyRunningException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ceptions/FFmpegNotSupportedException.java → ...ceptions/FFmpegNotSupportedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
...egAndroid/src/main/java/github/hiteshsondhi88/libffmpeg/FFmpegExecuteResponseHandler.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
FFmpegAndroid/src/main/java/github/hiteshsondhi88/libffmpeg/ResponseHandler.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.