GStreamer plugin to convert tensors to media types. More...
#include <gst/gst.h>
#include <gst/base/gstbasetransform.h>
#include "tensor_common.h"
#include "nnstreamer_subplugin.h"
#include "nnstreamer_plugin_api_decoder.h"
#include "tensor_decoder_custom.h"
Go to the source code of this file.
Classes | |
struct | decoder_custom_cb_s |
struct | _GstTensorDecoder |
Internal data structure for tensordec instances. More... | |
struct | _GstTensorDecoderClass |
GstTensorDecoderClass inherits GstBaseTransformClass. More... | |
Macros | |
#define | GST_TYPE_TENSOR_DECODER (gst_tensordec_get_type()) |
#define | GST_TENSOR_DECODER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TENSOR_DECODER,GstTensorDecoder)) |
#define | GST_TENSOR_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TENSOR_DECODER,GstTensorDecoderClass)) |
#define | GST_IS_TENSOR_DECODER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TENSOR_DECODER)) |
#define | GST_IS_TENSOR_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TENSOR_DECODER)) |
#define | GST_TENSOR_DECODER_CAST(obj) ((GstTensorDecoder *)(obj)) |
#define | TensorDecMaxOpNum (9) |
Typedefs | |
typedef struct _GstTensorDecoder | GstTensorDecoder |
typedef struct _GstTensorDecoderClass | GstTensorDecoderClass |
Functions | |
GType | gst_tensordec_get_type (void) |
Get Type function required for gst elements. More... | |
GStreamer plugin to convert tensors to media types.
GStreamer / NNStreamer tensor_decoder header Copyright (C) 2005 Thomas Vander Stichele thoma Copyright (C) 2005 Ronald S. Bultje s@ap estaa rt.o rgrbult Copyright (C) 2018 Jijoong Moon je@r onald .bit freak .netjijoo ng.m oon@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 gsttensor_decoder.h.
#define GST_IS_TENSOR_DECODER | ( | obj | ) | (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TENSOR_DECODER)) |
Definition at line 48 of file gsttensor_decoder.h.
#define GST_IS_TENSOR_DECODER_CLASS | ( | klass | ) | (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TENSOR_DECODER)) |
Definition at line 50 of file gsttensor_decoder.h.
#define GST_TENSOR_DECODER | ( | obj | ) | (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TENSOR_DECODER,GstTensorDecoder)) |
Definition at line 44 of file gsttensor_decoder.h.
#define GST_TENSOR_DECODER_CAST | ( | obj | ) | ((GstTensorDecoder *)(obj)) |
Definition at line 52 of file gsttensor_decoder.h.
#define GST_TENSOR_DECODER_CLASS | ( | klass | ) | (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TENSOR_DECODER,GstTensorDecoderClass)) |
Definition at line 46 of file gsttensor_decoder.h.
#define GST_TYPE_TENSOR_DECODER (gst_tensordec_get_type()) |
Definition at line 42 of file gsttensor_decoder.h.
#define TensorDecMaxOpNum (9) |
Definition at line 62 of file gsttensor_decoder.h.
typedef struct _GstTensorDecoder GstTensorDecoder |
Definition at line 54 of file gsttensor_decoder.h.
typedef struct _GstTensorDecoderClass GstTensorDecoderClass |
Definition at line 55 of file gsttensor_decoder.h.
GType gst_tensordec_get_type | ( | void | ) |
Get Type function required for gst elements.