-
Notifications
You must be signed in to change notification settings - Fork 743
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade presets for FFmpeg 7.0.2, TensorFlow Lite 2.17.0, Triton I…
…nference Server 2.48.0
- Loading branch information
Showing
50 changed files
with
680 additions
and
203 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
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
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
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
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
29 changes: 29 additions & 0 deletions
29
...te/src/gen/java/org/bytedeco/tensorflowlite/Free_Pointer_TfLiteOpaqueContext_Pointer.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 @@ | ||
// Targeted by JavaCPP version 1.5.11-SNAPSHOT: DO NOT EDIT THIS FILE | ||
|
||
package org.bytedeco.tensorflowlite; | ||
|
||
import java.nio.*; | ||
import org.bytedeco.javacpp.*; | ||
import org.bytedeco.javacpp.annotation.*; | ||
|
||
import static org.bytedeco.tensorflowlite.global.tensorflowlite.*; | ||
|
||
|
||
/** Sets the deallocation callback for the registration, similarly to | ||
* {@code TfLiteOperatorSetFree}. The function returns an error upon failure. | ||
* | ||
* This callback is called to deallocate the data returned by the init | ||
* callback. The value passed in the {@code data} parameter is the value that was | ||
* returned by the {@code init} callback. The value passed in the {@code user_data} | ||
* parameter is the value that was passed to {@code TfLiteOperatorCreateWithData}. | ||
* Please refer {@code free} of {@code TfLiteRegistration} for the detail. | ||
* */ | ||
@Properties(inherit = org.bytedeco.tensorflowlite.presets.tensorflowlite.class) | ||
public class Free_Pointer_TfLiteOpaqueContext_Pointer extends FunctionPointer { | ||
static { Loader.load(); } | ||
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */ | ||
public Free_Pointer_TfLiteOpaqueContext_Pointer(Pointer p) { super(p); } | ||
protected Free_Pointer_TfLiteOpaqueContext_Pointer() { allocate(); } | ||
private native void allocate(); | ||
public native void call(Pointer user_data, TfLiteOpaqueContext context, Pointer data); | ||
} |
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
29 changes: 29 additions & 0 deletions
29
...n/java/org/bytedeco/tensorflowlite/Init_Pointer_TfLiteOpaqueContext_BytePointer_long.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 @@ | ||
// Targeted by JavaCPP version 1.5.11-SNAPSHOT: DO NOT EDIT THIS FILE | ||
|
||
package org.bytedeco.tensorflowlite; | ||
|
||
import java.nio.*; | ||
import org.bytedeco.javacpp.*; | ||
import org.bytedeco.javacpp.annotation.*; | ||
|
||
import static org.bytedeco.tensorflowlite.global.tensorflowlite.*; | ||
|
||
|
||
/** Sets the initialization callback for the registration. The function returns | ||
* an error upon failure. | ||
* | ||
* The callback is called to initialize the op from serialized data. The value | ||
* passed in the {@code user_data} parameter is the value that was passed to | ||
* {@code TfLiteOperatorCreateWithData}. Please refer {@code init} of {@code TfLiteRegistration} | ||
* for the detail. | ||
* */ | ||
@Properties(inherit = org.bytedeco.tensorflowlite.presets.tensorflowlite.class) | ||
public class Init_Pointer_TfLiteOpaqueContext_BytePointer_long extends FunctionPointer { | ||
static { Loader.load(); } | ||
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */ | ||
public Init_Pointer_TfLiteOpaqueContext_BytePointer_long(Pointer p) { super(p); } | ||
protected Init_Pointer_TfLiteOpaqueContext_BytePointer_long() { allocate(); } | ||
private native void allocate(); | ||
public native Pointer call(Pointer user_data, TfLiteOpaqueContext context, | ||
@Cast("const char*") BytePointer buffer, @Cast("size_t") long length); | ||
} |
Oops, something went wrong.