Skip to content

Commit

Permalink
Removed Dead code
Browse files Browse the repository at this point in the history
Updated GH action steps
  • Loading branch information
sheinbergon committed Nov 24, 2023
1 parent 96e1376 commit 5f1f0f1
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/multi-platform-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:

- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Java JDK setup
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ossrh-publication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:

- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Java JDK setup
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ compile 'org.sheinbergon:jna-aac-encoder:2.0.0'
* Linux (64-bit)
* Windows (64-bit)
* OSX (Intel 64-bit / Apple Silicon, compiled with Xcode 13.3 SDK)
* Provided fdk-aac version is 2.0.2
* Tested with FDK-AAC version is 2.0.2
* Lower `2.0.x` versions of FDK-AAC might work, but haven't been tested.
* For `0.1.6`/`0.1.5` FDK-AAC support and Windows 32 bit support, please use version `0.1.9` of this library

Expand Down
3 changes: 0 additions & 3 deletions src/main/java/org/sheinbergon/aac/jna/FdkAACLib.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import org.sheinbergon.aac.jna.structure.AACEncInfo;
import org.sheinbergon.aac.jna.structure.AACEncOutArgs;
import org.sheinbergon.aac.jna.structure.AACEncoder;
import org.sheinbergon.aac.jna.structure.LibInfo;

@SuppressWarnings("MethodName")
public final class FdkAACLib {
Expand Down Expand Up @@ -47,8 +46,6 @@ static native int aacEncEncode(

static native int aacEncInfo(AACEncoder hAacEncoder, AACEncInfo pInfo);

static native int aacEncGetLibInfo(LibInfo info);

static native int aacEncoder_SetParam(AACEncoder encoder, int param, int value);

private FdkAACLib() {
Expand Down
40 changes: 0 additions & 40 deletions src/main/java/org/sheinbergon/aac/jna/structure/LibInfo.java

This file was deleted.

0 comments on commit 5f1f0f1

Please sign in to comment.