* [FFmpeg-devel] [PATCH] avutil/tx: use llrintf() to convert a float into a 64 bit integer
@ 2022-11-08 17:08 James Almer
2022-11-08 17:21 ` Martin Storsjö
0 siblings, 1 reply; 2+ messages in thread
From: James Almer @ 2022-11-08 17:08 UTC (permalink / raw)
To: ffmpeg-devel
Should fix fate failures on Windowx x86 targets, where long is 32 bits.
Signed-off-by: James Almer <jamrial@gmail.com>
---
libavutil/tx_priv.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/tx_priv.h b/libavutil/tx_priv.h
index 3195cb51b2..fb61119009 100644
--- a/libavutil/tx_priv.h
+++ b/libavutil/tx_priv.h
@@ -124,7 +124,7 @@ typedef void TXComplex;
} while (0)
#define UNSCALE(x) ((double)(x)/2147483648.0)
-#define RESCALE(x) (av_clip64(lrintf((x) * 2147483648.0), INT32_MIN, INT32_MAX))
+#define RESCALE(x) (av_clip64(llrintf((x) * 2147483648.0), INT32_MIN, INT32_MAX))
#define FOLD(x, y) ((int32_t)((x) + (unsigned)(y) + 32) >> 6)
--
2.38.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] 2+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avutil/tx: use llrintf() to convert a float into a 64 bit integer
2022-11-08 17:08 [FFmpeg-devel] [PATCH] avutil/tx: use llrintf() to convert a float into a 64 bit integer James Almer
@ 2022-11-08 17:21 ` Martin Storsjö
0 siblings, 0 replies; 2+ messages in thread
From: Martin Storsjö @ 2022-11-08 17:21 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On Tue, 8 Nov 2022, James Almer wrote:
> Should fix fate failures on Windowx x86 targets, where long is 32 bits.
>
> Signed-off-by: James Almer <jamrial@gmail.com>
> ---
> libavutil/tx_priv.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavutil/tx_priv.h b/libavutil/tx_priv.h
> index 3195cb51b2..fb61119009 100644
> --- a/libavutil/tx_priv.h
> +++ b/libavutil/tx_priv.h
> @@ -124,7 +124,7 @@ typedef void TXComplex;
> } while (0)
>
> #define UNSCALE(x) ((double)(x)/2147483648.0)
> -#define RESCALE(x) (av_clip64(lrintf((x) * 2147483648.0), INT32_MIN, INT32_MAX))
> +#define RESCALE(x) (av_clip64(llrintf((x) * 2147483648.0), INT32_MIN, INT32_MAX))
LGTM, thanks! This does seem to fix the test failures in my configs.
// Martin
_______________________________________________
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:[~2022-11-08 17:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-08 17:08 [FFmpeg-devel] [PATCH] avutil/tx: use llrintf() to convert a float into a 64 bit integer James Almer
2022-11-08 17:21 ` Martin Storsjö
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