* [FFmpeg-devel] [PATCH] avfilter/avfiltergraph: fix illogical flaws in code
@ 2023-05-12 20:49 Paul B Mahol
2023-05-13 1:04 ` James Almer
2023-05-13 7:55 ` Anton Khirnov
0 siblings, 2 replies; 4+ messages in thread
From: Paul B Mahol @ 2023-05-12 20:49 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1: Type: text/plain, Size: 10 bytes --]
Attached.
[-- Attachment #2: 0001-avfilter-avfiltergraph-fix-illogical-flaws-in-code.patch --]
[-- Type: text/x-patch, Size: 1133 bytes --]
From 11907ee612b0440faeb3804e8f9af5e36a63db89 Mon Sep 17 00:00:00 2001
From: Paul B Mahol <onemda@gmail.com>
Date: Fri, 12 May 2023 21:01:41 +0200
Subject: [PATCH] avfilter/avfiltergraph: fix illogical flaws in code
Signed-off-by: Paul B Mahol <onemda@gmail.com>
---
libavfilter/avfiltergraph.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 53f468494d..744f480e1d 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -748,8 +748,10 @@ static int reduce_formats_on_filter(AVFilterContext *filter)
(KNOWN(fmt) || fmts->all_counts)) {
/* Turn the infinite list into a singleton */
fmts->all_layouts = fmts->all_counts = 0;
- if (ff_add_channel_layout(&outlink->incfg.channel_layouts, fmt) < 0)
- ret = 1;
+ ret = ff_add_channel_layout(&outlink->incfg.channel_layouts, fmt);
+ if (ret < 0)
+ return ret;
+ ret = 1;
break;
}
--
2.39.1
[-- Attachment #3: Type: text/plain, Size: 251 bytes --]
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avfilter/avfiltergraph: fix illogical flaws in code
2023-05-12 20:49 [FFmpeg-devel] [PATCH] avfilter/avfiltergraph: fix illogical flaws in code Paul B Mahol
@ 2023-05-13 1:04 ` James Almer
2023-05-13 7:02 ` Paul B Mahol
2023-05-13 7:55 ` Anton Khirnov
1 sibling, 1 reply; 4+ messages in thread
From: James Almer @ 2023-05-13 1:04 UTC (permalink / raw)
To: ffmpeg-devel
On 5/12/2023 5:49 PM, Paul B Mahol wrote:
> Attached.
> From 11907ee612b0440faeb3804e8f9af5e36a63db89 Mon Sep 17 00:00:00 2001
> From: Paul B Mahol <onemda@gmail.com>
> Date: Fri, 12 May 2023 21:01:41 +0200
> Subject: [PATCH] avfilter/avfiltergraph: fix illogical flaws in code
>
> Signed-off-by: Paul B Mahol <onemda@gmail.com>
> ---
> libavfilter/avfiltergraph.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
> index 53f468494d..744f480e1d 100644
> --- a/libavfilter/avfiltergraph.c
> +++ b/libavfilter/avfiltergraph.c
> @@ -748,8 +748,10 @@ static int reduce_formats_on_filter(AVFilterContext *filter)
> (KNOWN(fmt) || fmts->all_counts)) {
> /* Turn the infinite list into a singleton */
> fmts->all_layouts = fmts->all_counts = 0;
> - if (ff_add_channel_layout(&outlink->incfg.channel_layouts, fmt) < 0)
> - ret = 1;
> + ret = ff_add_channel_layout(&outlink->incfg.channel_layouts, fmt);
> + if (ret < 0)
> + return ret;
> + ret = 1;
> break;
> }
Probably ok.
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avfilter/avfiltergraph: fix illogical flaws in code
2023-05-12 20:49 [FFmpeg-devel] [PATCH] avfilter/avfiltergraph: fix illogical flaws in code Paul B Mahol
2023-05-13 1:04 ` James Almer
@ 2023-05-13 7:55 ` Anton Khirnov
1 sibling, 0 replies; 4+ messages in thread
From: Anton Khirnov @ 2023-05-13 7:55 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Quoting Paul B Mahol (2023-05-12 22:49:07)
> Attached.
>
> From 11907ee612b0440faeb3804e8f9af5e36a63db89 Mon Sep 17 00:00:00 2001
> From: Paul B Mahol <onemda@gmail.com>
> Date: Fri, 12 May 2023 21:01:41 +0200
> Subject: [PATCH] avfilter/avfiltergraph: fix illogical flaws in code
This commit message is useless. It should say what is the actual problem
that is being fixed.
--
Anton Khirnov
_______________________________________________
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] 4+ messages in thread
end of thread, other threads:[~2023-05-13 7:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-12 20:49 [FFmpeg-devel] [PATCH] avfilter/avfiltergraph: fix illogical flaws in code Paul B Mahol
2023-05-13 1:04 ` James Almer
2023-05-13 7:02 ` Paul B Mahol
2023-05-13 7:55 ` Anton Khirnov
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