Searched refs:DNNModel (Results 1 – 8 of 8) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
D | dnn_interface.h | 84 typedef struct DNNModel{ struct 109 } DNNModel; argument 114 …DNNModel *(*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);
|
D | dnn_filter_common.h | 40 DNNModel *model;
|
/third_party/ffmpeg/libavfilter/dnn/ |
D | dnn_backend_tf.h | 32 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);
|
D | dnn_backend_openvino.h | 32 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);
|
D | dnn_backend_native.h | 126 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);
|
D | dnn_backend_native.c | 139 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()
|
D | dnn_backend_openvino.c | 54 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()
|
D | dnn_backend_tf.c | 56 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()
|