summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <[email protected]>2020-01-14 04:13:30 +0100
committerAndreas Rheinhardt <[email protected]>2020-05-20 02:44:52 +0200
commit95d2ae971000d5388bdec996eb7aacc627d5a997 (patch)
tree628da1a46793ceacc810fcf245dd2e240aaa547b
parent09d777a30ee8db8c6cc3e03e82a172f3940ff456 (diff)
avformat/segafilmenc: Fix undefined left shift of 1 by 31 places
by changing the type to unsigned. Signed-off-by: Andreas Rheinhardt <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit 8ae026d74f599b2d00b91798af1c1067a879007c)
-rw-r--r--libavformat/segafilmenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/segafilmenc.c b/libavformat/segafilmenc.c
index 524230e461..7aad8084a5 100644
--- a/libavformat/segafilmenc.c
+++ b/libavformat/segafilmenc.c
@@ -70,7 +70,7 @@ static int film_write_packet_to_header(AVFormatContext *format_context, FILMPack
info2 = pkt->duration;
/* The top bit being set indicates a key frame */
if (!pkt->keyframe)
- info1 |= (1 << 31);
+ info1 |= 1U << 31;
}
/* Write the 16-byte sample info packet to the STAB chunk in the header */