diff options
author | Guo, Yejun <yejun.guo@intel.com> | 2020-08-24 16:09:59 +0800 |
---|---|---|
committer | Guo, Yejun <yejun.guo@intel.com> | 2020-09-21 21:26:56 +0800 |
commit | 6918e240d706f7390272976d8b8d502afe426a18 (patch) | |
tree | 21e95a743464bc61fe755ac9a0d1ce24edbe6fad /libavfilter/vf_sr.c | |
parent | dfbea7b210ac95e59446f9512b25688df44c108b (diff) | |
download | ffmpeg-6918e240d706f7390272976d8b8d502afe426a18.tar.gz |
dnn: add userdata for load model parameter
the userdata will be used for the interaction between AVFrame and DNNData
Diffstat (limited to 'libavfilter/vf_sr.c')
-rw-r--r-- | libavfilter/vf_sr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_sr.c b/libavfilter/vf_sr.c index 37e1107145..445777f0c6 100644 --- a/libavfilter/vf_sr.c +++ b/libavfilter/vf_sr.c @@ -81,7 +81,7 @@ static av_cold int init(AVFilterContext *context) av_log(context, AV_LOG_ERROR, "load_model for network was not specified\n"); return AVERROR(EIO); } - sr_context->model = (sr_context->dnn_module->load_model)(sr_context->model_filename, NULL); + sr_context->model = (sr_context->dnn_module->load_model)(sr_context->model_filename, NULL, NULL); if (!sr_context->model){ av_log(context, AV_LOG_ERROR, "could not load DNN model\n"); return AVERROR(EIO); |