Home
last modified time | relevance | path

Searched refs:DNNModel (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/libavfilter/
Ddnn_interface.h84 typedef struct DNNModel{ struct
109 } DNNModel; argument
114DNNModel *(*load_model)(const char *model_filename, DNNFunctionType func_type, const char *options…
116 int (*execute_model)(const DNNModel *model, DNNExecBaseParams *exec_params);
118 DNNAsyncStatusType (*get_result)(const DNNModel *model, AVFrame **in, AVFrame **out);
120 int (*flush)(const DNNModel *model);
122 void (*free_model)(DNNModel **model);
Ddnn_filter_common.h40 DNNModel *model;
/third_party/ffmpeg/libavfilter/dnn/
Ddnn_backend_tf.h32 DNNModel *ff_dnn_load_model_tf(const char *model_filename, DNNFunctionType func_type, const char *o…
34 int ff_dnn_execute_model_tf(const DNNModel *model, DNNExecBaseParams *exec_params);
35 DNNAsyncStatusType ff_dnn_get_result_tf(const DNNModel *model, AVFrame **in, AVFrame **out);
36 int ff_dnn_flush_tf(const DNNModel *model);
38 void ff_dnn_free_model_tf(DNNModel **model);
Ddnn_backend_openvino.h32 DNNModel *ff_dnn_load_model_ov(const char *model_filename, DNNFunctionType func_type, const char *o…
34 int ff_dnn_execute_model_ov(const DNNModel *model, DNNExecBaseParams *exec_params);
35 DNNAsyncStatusType ff_dnn_get_result_ov(const DNNModel *model, AVFrame **in, AVFrame **out);
36 int ff_dnn_flush_ov(const DNNModel *model);
38 void ff_dnn_free_model_ov(DNNModel **model);
Ddnn_backend_native.h126 DNNModel *model;
135 DNNModel *ff_dnn_load_model_native(const char *model_filename, DNNFunctionType func_type, const cha…
137 int ff_dnn_execute_model_native(const DNNModel *model, DNNExecBaseParams *exec_params);
139 DNNAsyncStatusType ff_dnn_get_result_native(const DNNModel *model, AVFrame **in, AVFrame **out);
141 int ff_dnn_flush_native(const DNNModel *model);
143 void ff_dnn_free_model_native(DNNModel **model);
Ddnn_backend_native.c139 DNNModel *ff_dnn_load_model_native(const char *model_filename, DNNFunctionType func_type, const cha… in ff_dnn_load_model_native()
142 DNNModel *model = NULL; in ff_dnn_load_model_native()
157 model = av_mallocz(sizeof(DNNModel)); in ff_dnn_load_model_native()
435 int ff_dnn_execute_model_native(const DNNModel *model, DNNExecBaseParams *exec_params) in ff_dnn_execute_model_native()
474 int ff_dnn_flush_native(const DNNModel *model) in ff_dnn_flush_native()
488 DNNAsyncStatusType ff_dnn_get_result_native(const DNNModel *model, AVFrame **in, AVFrame **out) in ff_dnn_get_result_native()
515 void ff_dnn_free_model_native(DNNModel **model) in ff_dnn_free_model_native()
Ddnn_backend_openvino.c54 DNNModel *model;
726 DNNModel *ff_dnn_load_model_ov(const char *model_filename, DNNFunctionType func_type, const char *o… in ff_dnn_load_model_ov()
728 DNNModel *model = NULL; in ff_dnn_load_model_ov()
733 model = av_mallocz(sizeof(DNNModel)); in ff_dnn_load_model_ov()
783 int ff_dnn_execute_model_ov(const DNNModel *model, DNNExecBaseParams *exec_params) in ff_dnn_execute_model_ov()
866 DNNAsyncStatusType ff_dnn_get_result_ov(const DNNModel *model, AVFrame **in, AVFrame **out) in ff_dnn_get_result_ov()
872 int ff_dnn_flush_ov(const DNNModel *model) in ff_dnn_flush_ov()
910 void ff_dnn_free_model_ov(DNNModel **model) in ff_dnn_free_model_ov()
Ddnn_backend_tf.c56 DNNModel *model;
761 DNNModel *model = NULL; in load_native_model()
852 DNNModel *ff_dnn_load_model_tf(const char *model_filename, DNNFunctionType func_type, const char *o… in ff_dnn_load_model_tf()
854 DNNModel *model = NULL; in ff_dnn_load_model_tf()
858 model = av_mallocz(sizeof(DNNModel)); in ff_dnn_load_model_tf()
1144 int ff_dnn_execute_model_tf(const DNNModel *model, DNNExecBaseParams *exec_params) in ff_dnn_execute_model_tf()
1189 DNNAsyncStatusType ff_dnn_get_result_tf(const DNNModel *model, AVFrame **in, AVFrame **out) in ff_dnn_get_result_tf()
1195 int ff_dnn_flush_tf(const DNNModel *model) in ff_dnn_flush_tf()
1225 void ff_dnn_free_model_tf(DNNModel **model) in ff_dnn_free_model_tf()