* Re: [FFmpeg-devel] [PATCH] avfilter: minor spell fix
[not found] <e2f81b38-5c61-48c4-b8f4-2db1c4bd9082@gmail.com>
@ 2025-01-19 15:08 ` Alexander Strasser via ffmpeg-devel
2025-01-19 15:31 ` Guo, Yejun
0 siblings, 1 reply; 2+ messages in thread
From: Alexander Strasser via ffmpeg-devel @ 2025-01-19 15:08 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Alexander Strasser, yejun.guo
On 2025-01-13 19:42 +0100, Leandro Santiago wrote:
> Signed-off-by: Leandro Santiago <leandrosansilva@gmail.com>
> ---
> libavfilter/dnn/dnn_backend_openvino.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavfilter/dnn/dnn_backend_openvino.c b/libavfilter/dnn/dnn_backend_openvino.c
> index 2f6706dcd4..ec46e29b8a 100644
> --- a/libavfilter/dnn/dnn_backend_openvino.c
> +++ b/libavfilter/dnn/dnn_backend_openvino.c
> @@ -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;
> }
> }
> --
LGTM, will push it soon'ish if Guo doesn't beat me to it.
Thanks,
Alexander
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avfilter: minor spell fix
2025-01-19 15:08 ` [FFmpeg-devel] [PATCH] avfilter: minor spell fix Alexander Strasser via ffmpeg-devel
@ 2025-01-19 15:31 ` Guo, Yejun
0 siblings, 0 replies; 2+ messages in thread
From: Guo, Yejun @ 2025-01-19 15:31 UTC (permalink / raw)
To: Alexander Strasser, FFmpeg development discussions and patches
> -----Original Message-----
> From: Alexander Strasser <eclipse7@gmx.net>
> Sent: Sunday, January 19, 2025 11:09 PM
> To: FFmpeg development discussions and patches <ffmpeg-
> devel@ffmpeg.org>
> Cc: Guo, Yejun <yejun.guo@intel.com>
> Subject: Re: [FFmpeg-devel] [PATCH] avfilter: minor spell fix
>
> On 2025-01-13 19:42 +0100, Leandro Santiago wrote:
> > Signed-off-by: Leandro Santiago <leandrosansilva@gmail.com>
> > ---
> > libavfilter/dnn/dnn_backend_openvino.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/libavfilter/dnn/dnn_backend_openvino.c
> b/libavfilter/dnn/dnn_backend_openvino.c
> > index 2f6706dcd4..ec46e29b8a 100644
> > --- a/libavfilter/dnn/dnn_backend_openvino.c
> > +++ b/libavfilter/dnn/dnn_backend_openvino.c
> > @@ -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;
> > }
> > }
> > --
>
> LGTM, will push it soon'ish if Guo doesn't beat me to it.
>
LGTM, thanks, please.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-19 15:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <e2f81b38-5c61-48c4-b8f4-2db1c4bd9082@gmail.com>
2025-01-19 15:08 ` [FFmpeg-devel] [PATCH] avfilter: minor spell fix Alexander Strasser via ffmpeg-devel
2025-01-19 15:31 ` Guo, Yejun
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git