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
lavc/fic: Do not warn about empty cursor.
Fixes ticket
#5174
.
tags/n3.1
Carl Eugen Hoyos
9 years ago
parent
47a11ff457
commit
00ffbdfb68
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/fic.c
+ 1
- 1
libavcodec/fic.c
View File
@@ -309,7 +309,7 @@ static int fic_decode_frame(AVCodecContext *avctx, void *data,
return AVERROR_INVALIDDATA;
}
if (!tsize)
if (!tsize
|| !AV_RL16(src + 37) || !AV_RL16(src + 39)
)
skip_cursor = 1;
if (!skip_cursor && tsize < 32) {
Write
Preview
Loading…
Cancel
Save