Go to the documentation of this file.
24 #ifndef AVFILTER_DNN_FILTER_COMMON_H
25 #define AVFILTER_DNN_FILTER_COMMON_H
29 #define DNN_FILTER_CHILD_CLASS_ITERATE(name, backend_mask) \
30 static const AVClass *name##_child_class_iterate(void **iter) \
32 return ff_dnn_child_class_iterate_with_mask(iter, (backend_mask)); \
35 #define AVFILTER_DNN_DEFINE_CLASS_EXT(name, desc, options) \
36 static const AVClass name##_class = { \
38 .item_name = av_default_item_name, \
40 .version = LIBAVUTIL_VERSION_INT, \
41 .category = AV_CLASS_CATEGORY_FILTER, \
42 .child_next = ff_dnn_filter_child_next, \
43 .child_class_iterate = name##_child_class_iterate, \
46 #define AVFILTER_DNN_DEFINE_CLASS(fname, backend_mask) \
47 DNN_FILTER_CHILD_CLASS_ITERATE(fname, backend_mask) \
48 AVFILTER_DNN_DEFINE_CLASS_EXT(fname, #fname, fname##_options)
int ff_dnn_get_input(DnnContext *ctx, DNNData *input)
This structure describes decoded (raw) audio or video data.
int ff_dnn_set_detect_post_proc(DnnContext *ctx, DetectPostProc post_proc)
int ff_dnn_init(DnnContext *ctx, DNNFunctionType func_type, AVFilterContext *filter_ctx)
int(* DetectPostProc)(AVFrame *frame, DNNData *output, uint32_t nb, AVFilterContext *filter_ctx)
void(* filter)(uint8_t *src, int stride, int qscale)
void ff_dnn_uninit(DnnContext *ctx)
void * ff_dnn_filter_child_next(void *obj, void *prev)
static FilteringContext * filter_ctx
int ff_dnn_set_classify_post_proc(DnnContext *ctx, ClassifyPostProc post_proc)
int ff_dnn_get_output(DnnContext *ctx, int input_width, int input_height, int *output_width, int *output_height)
int ff_dnn_filter_init_child_class(AVFilterContext *filter)
int(* ClassifyPostProc)(AVFrame *frame, DNNData *output, uint32_t bbox_index, AVFilterContext *filter_ctx)
DNNAsyncStatusType ff_dnn_get_result(DnnContext *ctx, AVFrame **in_frame, AVFrame **out_frame)
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some input
int ff_dnn_execute_model_classification(DnnContext *ctx, AVFrame *in_frame, AVFrame *out_frame, const char *target)
int ff_dnn_execute_model(DnnContext *ctx, AVFrame *in_frame, AVFrame *out_frame)
int(* FramePrePostProc)(AVFrame *frame, DNNData *model, AVFilterContext *filter_ctx)
int ff_dnn_flush(DnnContext *ctx)
int ff_dnn_set_frame_proc(DnnContext *ctx, FramePrePostProc pre_proc, FramePrePostProc post_proc)