1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

all: fix typos found by codespell

This commit is contained in:
Timo Rothenpieler
2025-08-01 22:43:23 +02:00
parent 8d439b2483
commit 262d41c804
303 changed files with 482 additions and 481 deletions

View File

@@ -1331,7 +1331,7 @@ static int get_output_ov(DNNModel *model, const char *input_name, int input_widt
#endif
ret = init_model_ov(ov_model, input_name, output_name ? &output_name : NULL, 1);
if (ret != 0) {
av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n");
av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO executable network or inference request\n");
return ret;
}
}
@@ -1487,7 +1487,7 @@ static int dnn_execute_model_ov(const DNNModel *model, DNNExecBaseParams *exec_p
ret = init_model_ov(ov_model, exec_params->input_name,
exec_params->output_names, exec_params->nb_output);
if (ret != 0) {
av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n");
av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO executable network or inference request\n");
return ret;
}
}