dnn/openvino: remove unnecessary code

Signed-off-by: Ting Fu <ting.fu@intel.com>
This commit is contained in:
Ting Fu 2021-01-18 11:42:12 +08:00 committed by Guo, Yejun
parent 71ce5c32f0
commit 946fcd4508

View File

@ -325,14 +325,6 @@ static DNNReturnType get_input_ov(void *model, DNNData *input, const char *input
return DNN_ERROR;
}
// The order of dims in the openvino is fixed and it is always NCHW for 4-D data.
// while we pass NHWC data from FFmpeg to openvino
status = ie_network_set_input_layout(ov_model->network, input_name, NHWC);
if (status != OK) {
av_log(ctx, AV_LOG_ERROR, "Input \"%s\" does not match layout NHWC\n", input_name);
return DNN_ERROR;
}
input->channels = dims.dims[1];
input->height = dims.dims[2];
input->width = dims.dims[3];