summaryrefslogtreecommitdiff
path: root/libavcodec/g2meet.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2013-09-11 23:40:12 +0300
committerMartin Storsjö <martin@martin.st>2013-09-12 10:55:20 +0300
commitb1e469885362febce3d9a4678624e44a92f77da9 (patch)
treef080e6d8992a20bcb571cf2e6f6d100a4f620005 /libavcodec/g2meet.c
parent0f678c0214dccb355ed8955077a2bea46984fbc8 (diff)
g2meet: Allocate cursor buffers large enough to fit the aligned width
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/g2meet.c')
-rw-r--r--libavcodec/g2meet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c
index 199e8af080..1bbac2d868 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) {