Mandatory APIs for NNStreamer Decoder sub-plugins (Need Gst Devel) More...
Go to the source code of this file.
Classes | |
struct | _GstTensorDecoderDef |
Decoder definitions for different semantics of tensors This allows developers to create their own decoders. More... | |
Typedefs | |
typedef struct _GstTensorDecoderDef | GstTensorDecoderDef |
Decoder definitions for different semantics of tensors This allows developers to create their own decoders. More... | |
Functions | |
int | nnstreamer_decoder_probe (GstTensorDecoderDef *decoder) |
Decoder's sub-plugin should call this function to register itself. More... | |
void | nnstreamer_decoder_exit (const char *name) |
Decoder's sub-plugin may call this to unregister itself. More... | |
const GstTensorDecoderDef * | nnstreamer_decoder_find (const char *name) |
Find decoder sub-plugin with the name. More... | |
void | nnstreamer_decoder_set_custom_property_desc (const char *name, const char *prop,...) |
set custom property description for tensor decoder sub-plugin More... | |
Mandatory APIs for NNStreamer Decoder sub-plugins (Need Gst Devel)
NNStreamer API for Tensor_Decoder Sub-Plugins Copyright (C) 2019 MyungJoo Ham myung joo. ham@s amsu ng.co m
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; version 2.1 of the License.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
Definition in file nnstreamer_plugin_api_decoder.h.
typedef struct _GstTensorDecoderDef GstTensorDecoderDef |
Decoder definitions for different semantics of tensors This allows developers to create their own decoders.
void nnstreamer_decoder_exit | ( | const char * | name | ) |
Decoder's sub-plugin may call this to unregister itself.
[in] | name | The name of decoder sub-plugin. |
Definition at line 166 of file gsttensor_decoder.c.
const GstTensorDecoderDef* nnstreamer_decoder_find | ( | const char * | name | ) |
Find decoder sub-plugin with the name.
[in] | name | The name of decoder sub-plugin. |
Definition at line 177 of file gsttensor_decoder.c.
int nnstreamer_decoder_probe | ( | GstTensorDecoderDef * | decoder | ) |
Decoder's sub-plugin should call this function to register itself.
[in] | decoder | Decoder sub-plugin to be registered. |
Definition at line 155 of file gsttensor_decoder.c.
void nnstreamer_decoder_set_custom_property_desc | ( | const char * | name, |
const char * | prop, | ||
... | |||
) |
set custom property description for tensor decoder sub-plugin
Definition at line 186 of file gsttensor_decoder.c.