summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2022-08-26 11:26:32 +0300
committerMartin Storsjö <martin@martin.st>2022-09-02 23:12:26 +0300
commit0dd8fe6f4b072077d2d87eb3a2933e145ac41df1 (patch)
tree732173fa2d7f1ace80596e04bb4efe83382de67c /libavutil
parent3f456dc245d975de2c39caa641568e0898d5f316 (diff)
arm: Check the build time constants in av_clip_*intp2
This fixes building for arm targets with optimizations disabled. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/arm/intmath.h24
1 files changed, 18 insertions, 6 deletions
diff --git a/libavutil/arm/intmath.h b/libavutil/arm/intmath.h
index 5311a7d52b..f19b21e98d 100644
--- a/libavutil/arm/intmath.h
+++ b/libavutil/arm/intmath.h
@@ -65,17 +65,29 @@ static av_always_inline av_const int av_clip_int16_arm(int a)
#define av_clip_intp2 av_clip_intp2_arm
static av_always_inline av_const int av_clip_intp2_arm(int a, int p)
{
- unsigned x;
- __asm__ ("ssat %0, %2, %1" : "=r"(x) : "r"(a), "i"(p+1));
- return x;
+ if (av_builtin_constant_p(p)) {
+ unsigned x;
+ __asm__ ("ssat %0, %2, %1" : "=r"(x) : "r"(a), "i"(p+1));
+ return x;
+ } else {
+ if (((unsigned)a + (1 << p)) & ~((2 << p) - 1))
+ return (a >> 31) ^ ((1 << p) - 1);
+ else
+ return a;
+ }
}
#define av_clip_uintp2 av_clip_uintp2_arm
static av_always_inline av_const unsigned av_clip_uintp2_arm(int a, int p)
{
- unsigned x;
- __asm__ ("usat %0, %2, %1" : "=r"(x) : "r"(a), "i"(p));
- return x;
+ if (av_builtin_constant_p(p)) {
+ unsigned x;
+ __asm__ ("usat %0, %2, %1" : "=r"(x) : "r"(a), "i"(p));
+ return x;
+ } else {
+ if (a & ~((1<<p) - 1)) return (~a) >> 31 & ((1<<p) - 1);
+ else return a;
+ }
}
#define av_sat_add32 av_sat_add32_arm