* [FFmpeg-devel] [PATCH v2] avfilter/xpsnr: avoid division by zero
@ 2025-02-02 17:57 Gyan Doshi
2025-02-05 6:39 ` Gyan Doshi
0 siblings, 1 reply; 3+ messages in thread
From: Gyan Doshi @ 2025-02-02 17:57 UTC (permalink / raw)
To: ffmpeg-devel
The ref input may have its frame rate unset, which would then lead to
SIGFPE. So fall back to the main link frame rate. If that too is unset,
default to 0.
Related to #11428
---
libavfilter/vf_xpsnr.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/libavfilter/vf_xpsnr.c b/libavfilter/vf_xpsnr.c
index 1b2c2a7c2c..3097db0878 100644
--- a/libavfilter/vf_xpsnr.c
+++ b/libavfilter/vf_xpsnr.c
@@ -552,6 +552,7 @@ static int config_input_ref(AVFilterLink *inlink)
AVFilterContext *ctx = inlink->dst;
XPSNRContext *const s = ctx->priv;
FilterLink *il = ff_filter_link(inlink);
+ FilterLink *ml = ff_filter_link(ctx->inputs[0]);
if ((ctx->inputs[0]->w != ctx->inputs[1]->w) ||
(ctx->inputs[0]->h != ctx->inputs[1]->h)) {
@@ -568,7 +569,9 @@ static int config_input_ref(AVFilterLink *inlink)
s->max_error_64 = (1 << s->depth) - 1; /* conventional limit */
s->max_error_64 *= s->max_error_64;
- s->frame_rate = il->frame_rate.num / il->frame_rate.den;
+ // Avoid division by zero
+ s->frame_rate = il->frame_rate.den ? (il->frame_rate.num / il->frame_rate.den) :
+ ml->frame_rate.den ? (ml->frame_rate.num / ml->frame_rate.den) : 0;
s->num_comps = (desc->nb_components > 3 ? 3 : desc->nb_components);
--
2.46.1
_______________________________________________
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] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH v2] avfilter/xpsnr: avoid division by zero
2025-02-02 17:57 [FFmpeg-devel] [PATCH v2] avfilter/xpsnr: avoid division by zero Gyan Doshi
@ 2025-02-05 6:39 ` Gyan Doshi
2025-02-06 10:39 ` Gyan Doshi
0 siblings, 1 reply; 3+ messages in thread
From: Gyan Doshi @ 2025-02-05 6:39 UTC (permalink / raw)
To: ffmpeg-devel
On 2025-02-02 11:27 pm, Gyan Doshi wrote:
> The ref input may have its frame rate unset, which would then lead to
> SIGFPE. So fall back to the main link frame rate. If that too is unset,
> default to 0.
>
> Related to #11428
Plan to push tomorrow.
Regards,
Gyan
> ---
> libavfilter/vf_xpsnr.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/libavfilter/vf_xpsnr.c b/libavfilter/vf_xpsnr.c
> index 1b2c2a7c2c..3097db0878 100644
> --- a/libavfilter/vf_xpsnr.c
> +++ b/libavfilter/vf_xpsnr.c
> @@ -552,6 +552,7 @@ static int config_input_ref(AVFilterLink *inlink)
> AVFilterContext *ctx = inlink->dst;
> XPSNRContext *const s = ctx->priv;
> FilterLink *il = ff_filter_link(inlink);
> + FilterLink *ml = ff_filter_link(ctx->inputs[0]);
>
> if ((ctx->inputs[0]->w != ctx->inputs[1]->w) ||
> (ctx->inputs[0]->h != ctx->inputs[1]->h)) {
> @@ -568,7 +569,9 @@ static int config_input_ref(AVFilterLink *inlink)
> s->max_error_64 = (1 << s->depth) - 1; /* conventional limit */
> s->max_error_64 *= s->max_error_64;
>
> - s->frame_rate = il->frame_rate.num / il->frame_rate.den;
> + // Avoid division by zero
> + s->frame_rate = il->frame_rate.den ? (il->frame_rate.num / il->frame_rate.den) :
> + ml->frame_rate.den ? (ml->frame_rate.num / ml->frame_rate.den) : 0;
>
> s->num_comps = (desc->nb_components > 3 ? 3 : desc->nb_components);
>
_______________________________________________
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] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH v2] avfilter/xpsnr: avoid division by zero
2025-02-05 6:39 ` Gyan Doshi
@ 2025-02-06 10:39 ` Gyan Doshi
0 siblings, 0 replies; 3+ messages in thread
From: Gyan Doshi @ 2025-02-06 10:39 UTC (permalink / raw)
To: ffmpeg-devel
On 2025-02-05 12:09 pm, Gyan Doshi wrote:
>
>
> On 2025-02-02 11:27 pm, Gyan Doshi wrote:
>> The ref input may have its frame rate unset, which would then lead to
>> SIGFPE. So fall back to the main link frame rate. If that too is unset,
>> default to 0.
>>
>> Related to #11428
>
> Plan to push tomorrow.
Pushed as 6da82b448568a1875b32a7135fe30b7da8d197e7
Regards,
Gyan
_______________________________________________
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] 3+ messages in thread
end of thread, other threads:[~2025-02-06 10:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-02 17:57 [FFmpeg-devel] [PATCH v2] avfilter/xpsnr: avoid division by zero Gyan Doshi
2025-02-05 6:39 ` Gyan Doshi
2025-02-06 10:39 ` Gyan Doshi
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