diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c
index 199e8af08009bf995588f1343237787960c8b25b..1bbac2d8683ed8d43bd906d978dda9d2237252f4 100644
--- a/libavcodec/g2meet.c
+++ b/libavcodec/g2meet.c
@@ -488,7 +488,7 @@ static int g2m_load_cursor(AVCodecContext *avctx, G2MContext *c,
     cursor_hot_y  = bytestream2_get_byte(gb);
     cursor_fmt    = bytestream2_get_byte(gb);
 
-    cursor_stride = cursor_w * 4;
+    cursor_stride = FFALIGN(cursor_w, 32) * 4;
 
     if (cursor_w < 1 || cursor_w > 256 ||
         cursor_h < 1 || cursor_h > 256) {