FFmpeg
libavfilter
dnn_filter_common.h
Go to the documentation of this file.
1
/*
2
* This file is part of FFmpeg.
3
*
4
* FFmpeg is free software; you can redistribute it and/or
5
* modify it under the terms of the GNU Lesser General Public
6
* License as published by the Free Software Foundation; either
7
* version 2.1 of the License, or (at your option) any later version.
8
*
9
* FFmpeg is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
* Lesser General Public License for more details.
13
*
14
* You should have received a copy of the GNU Lesser General Public
15
* License along with FFmpeg; if not, write to the Free Software
16
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
*/
18
19
/**
20
* @file
21
* common functions for the dnn based filters
22
*/
23
24
#ifndef AVFILTER_DNN_FILTER_COMMON_H
25
#define AVFILTER_DNN_FILTER_COMMON_H
26
27
#include "
dnn_interface.h
"
28
29
typedef
struct
DnnContext
{
30
char
*
model_filename
;
31
DNNBackendType
backend_type
;
32
char
*
model_inputname
;
33
char
*
model_outputname
;
34
char
*
backend_options
;
35
int
async
;
36
37
DNNModule
*
dnn_module
;
38
DNNModel
*
model
;
39
}
DnnContext
;
40
41
#define DNN_COMMON_OPTIONS \
42
{ "model", "path to model file", OFFSET(model_filename), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },\
43
{ "input", "input name of the model", OFFSET(model_inputname), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },\
44
{ "output", "output name of the model", OFFSET(model_outputname), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },\
45
{ "backend_configs", "backend configs", OFFSET(backend_options), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },\
46
{ "options", "backend configs", OFFSET(backend_options), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },\
47
{ "async", "use DNN async inference", OFFSET(async), AV_OPT_TYPE_BOOL, { .i64 = 1}, 0, 1, FLAGS},
48
49
50
int
ff_dnn_init
(
DnnContext
*
ctx
,
DNNFunctionType
func_type,
AVFilterContext
*
filter_ctx
);
51
DNNReturnType
ff_dnn_get_input
(
DnnContext
*
ctx
,
DNNData
*
input
);
52
DNNReturnType
ff_dnn_get_output
(
DnnContext
*
ctx
,
int
input_width,
int
input_height,
int
*output_width,
int
*output_height);
53
DNNReturnType
ff_dnn_execute_model
(
DnnContext
*
ctx
,
AVFrame
*in_frame,
AVFrame
*out_frame);
54
DNNReturnType
ff_dnn_execute_model_async
(
DnnContext
*
ctx
,
AVFrame
*in_frame,
AVFrame
*out_frame);
55
DNNAsyncStatusType
ff_dnn_get_async_result
(
DnnContext
*
ctx
,
AVFrame
**in_frame,
AVFrame
**out_frame);
56
DNNReturnType
ff_dnn_flush
(
DnnContext
*
ctx
);
57
void
ff_dnn_uninit
(
DnnContext
*
ctx
);
58
59
#endif
filter_ctx
static FilteringContext * filter_ctx
Definition:
transcoding.c:48
DnnContext::dnn_module
DNNModule * dnn_module
Definition:
dnn_filter_common.h:37
DNNFunctionType
DNNFunctionType
Definition:
dnn_interface.h:51
DnnContext::model
DNNModel * model
Definition:
dnn_filter_common.h:38
AVFrame
This structure describes decoded (raw) audio or video data.
Definition:
frame.h:318
ff_dnn_init
int ff_dnn_init(DnnContext *ctx, DNNFunctionType func_type, AVFilterContext *filter_ctx)
Definition:
dnn_filter_common.c:21
ff_dnn_uninit
void ff_dnn_uninit(DnnContext *ctx)
Definition:
dnn_filter_common.c:100
ff_dnn_get_async_result
DNNAsyncStatusType ff_dnn_get_async_result(DnnContext *ctx, AVFrame **in_frame, AVFrame **out_frame)
Definition:
dnn_filter_common.c:90
DnnContext
Definition:
dnn_filter_common.h:29
ff_dnn_get_output
DNNReturnType ff_dnn_get_output(DnnContext *ctx, int input_width, int input_height, int *output_width, int *output_height)
Definition:
dnn_filter_common.c:72
ff_dnn_execute_model
DNNReturnType ff_dnn_execute_model(DnnContext *ctx, AVFrame *in_frame, AVFrame *out_frame)
Definition:
dnn_filter_common.c:78
DnnContext::async
int async
Definition:
dnn_filter_common.h:35
DnnContext::model_filename
char * model_filename
Definition:
dnn_filter_common.h:30
DNNReturnType
DNNReturnType
Definition:
dnn_interface.h:33
DNNData
Definition:
dnn_interface.h:58
ctx
AVFormatContext * ctx
Definition:
movenc.c:48
ff_dnn_execute_model_async
DNNReturnType ff_dnn_execute_model_async(DnnContext *ctx, AVFrame *in_frame, AVFrame *out_frame)
Definition:
dnn_filter_common.c:84
DnnContext::backend_options
char * backend_options
Definition:
dnn_filter_common.h:34
ff_dnn_flush
DNNReturnType ff_dnn_flush(DnnContext *ctx)
Definition:
dnn_filter_common.c:95
DnnContext::model_outputname
char * model_outputname
Definition:
dnn_filter_common.h:33
DnnContext::backend_type
DNNBackendType backend_type
Definition:
dnn_filter_common.h:31
DnnContext::model_inputname
char * model_inputname
Definition:
dnn_filter_common.h:32
DNNBackendType
DNNBackendType
Definition:
dnn_interface.h:35
input
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
Definition:
filter_design.txt:172
dnn_interface.h
AVFilterContext
An instance of a filter.
Definition:
avfilter.h:341
DNNModel
Definition:
dnn_interface.h:66
ff_dnn_get_input
DNNReturnType ff_dnn_get_input(DnnContext *ctx, DNNData *input)
Definition:
dnn_filter_common.c:67
DNNAsyncStatusType
DNNAsyncStatusType
Definition:
dnn_interface.h:44
DNNModule
Definition:
dnn_interface.h:90
Generated on Wed Aug 24 2022 21:34:29 for FFmpeg by
1.8.17