aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Härdin <git@haerdin.se>2024-05-16 16:33:44 +0200
committerTomas Härdin <git@haerdin.se>2024-06-14 14:28:25 +0200
commit60ab40be7086ad80418192a3eaf2f2b860c10369 (patch)
tree331ddfec514f466badc1b48e8349ae976386926f
parent818a487849b9f8234275f800f78f318750dc7e6d (diff)
downloadffmpeg-60ab40be7086ad80418192a3eaf2f2b860c10369.tar.gz
lavu/common.h: Fix UB in av_clip_intp2_c()
Found by value analysis
-rw-r--r--libavutil/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index 92b5d27ef1..29cef74826 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -265,7 +265,7 @@ static av_always_inline av_const int32_t av_clipl_int32_c(int64_t a)
*/
static av_always_inline av_const int av_clip_intp2_c(int a, int p)
{
- if (((unsigned)a + (1 << p)) & ~((2 << p) - 1))
+ if (((unsigned)a + (1U << p)) & ~((2U << p) - 1))
return (a >> 31) ^ ((1 << p) - 1);
else
return a;