This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
tta: avoid undefined shifts
Signed-off-by: Diego Biurrun <diego@biurrun.de>
tags/n3.4
Anton Khirnov
Diego Biurrun
8 years ago
parent
dc4b625028
commit
4adbb44ad1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/tta.c
+ 1
- 1
libavcodec/tta.c
View File
@@ -360,7 +360,7 @@ static int tta_decode_frame(AVCodecContext *avctx, void *data,
}
if (k) {
if (k >
MIN_CACHE_BITS
) {
if (k >
= 32 || unary > INT32_MAX >> k
) {
ret = AVERROR_INVALIDDATA;
goto error;
}
Write
Preview
Loading…
Cancel
Save