]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/dnn_backend_openvino.c: Spelling Correction in OpenVino Backend
authorshubhanshu02 <shubhanshu.e01@gmail.com>
Fri, 23 Apr 2021 10:56:51 +0000 (16:26 +0530)
committerGuo, Yejun <yejun.guo@intel.com>
Sun, 25 Apr 2021 01:02:54 +0000 (09:02 +0800)
Correct Spelling of the word `descibe` to `describe`
in init_model_ov

Signed-off-by: shubhanshu02 <shubhanshu.e01@gmail.com>
libavfilter/dnn/dnn_backend_openvino.c

index 0757727a9ca7b9c6eb4f4134a958de016ee3c780..a8032fe56bbb210981bf77c6c09e3b2dd6b3f2b0 100644 (file)
@@ -318,7 +318,7 @@ static DNNReturnType init_model_ov(OVModel *ov_model, const char *input_name, co
     }
 
     // all models in openvino open model zoo use BGR with range [0.0f, 255.0f] as input,
-    // we don't have a AVPixelFormat to descibe it, so we'll use AV_PIX_FMT_BGR24 and
+    // we don't have a AVPixelFormat to describe it, so we'll use AV_PIX_FMT_BGR24 and
     // ask openvino to do the conversion internally.
     // the current supported SR model (frame processing) is generated from tensorflow model,
     // and its input is Y channel as float with range [0.0f, 1.0f], so do not set for this case.