-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: change namespace to io.github.anilbeesetti (#10)
- Loading branch information
1 parent
8a0403f
commit 645289d
Showing
15 changed files
with
44 additions
and
119 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
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
32 changes: 0 additions & 32 deletions
32
ffcodecs/src/main/java/com/github/anilbeesetti/nextlib/ffcodecs/FfmpegDecoderException.java
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
ffcodecs/src/main/java/com/github/anilbeesetti/nextlib/ffcodecs/package-info.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
.../ffcodecs/FFmpegOnlyRenderersFactory.java → .../ffcodecs/FFmpegOnlyRenderersFactory.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
17 changes: 1 addition & 16 deletions
17
.../nextlib/ffcodecs/FfmpegAudioDecoder.java → .../nextlib/ffcodecs/FfmpegAudioDecoder.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
17 changes: 1 addition & 16 deletions
17
...nextlib/ffcodecs/FfmpegAudioRenderer.java → ...nextlib/ffcodecs/FfmpegAudioRenderer.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
17 changes: 17 additions & 0 deletions
17
ffcodecs/src/main/java/io/github/anilbeesetti/nextlib/ffcodecs/FfmpegDecoderException.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,17 @@ | ||
package io.github.anilbeesetti.nextlib.ffcodecs; | ||
|
||
import androidx.media3.common.util.UnstableApi; | ||
import androidx.media3.decoder.DecoderException; | ||
|
||
/** Thrown when an FFmpeg decoder error occurs. */ | ||
@UnstableApi | ||
public final class FfmpegDecoderException extends DecoderException { | ||
|
||
/* package */ FfmpegDecoderException(String message) { | ||
super(message); | ||
} | ||
|
||
/* package */ FfmpegDecoderException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
17 changes: 1 addition & 16 deletions
17
...setti/nextlib/ffcodecs/FfmpegLibrary.java → ...setti/nextlib/ffcodecs/FfmpegLibrary.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
.../nextlib/ffcodecs/FfmpegVideoDecoder.java → .../nextlib/ffcodecs/FfmpegVideoDecoder.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
...nextlib/ffcodecs/FfmpegVideoRenderer.java → ...nextlib/ffcodecs/FfmpegVideoRenderer.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
...extlib/ffcodecs/NextRenderersFactory.java → ...extlib/ffcodecs/NextRenderersFactory.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
4 changes: 4 additions & 0 deletions
4
ffcodecs/src/main/java/io/github/anilbeesetti/nextlib/ffcodecs/package-info.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,4 @@ | ||
@NonNullApi | ||
package io.github.anilbeesetti.nextlib.ffcodecs; | ||
|
||
import androidx.media3.common.util.NonNullApi; |