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
lavf/img2dec: Also auto-detect (unusual) uncompressed pcx.
tags/n3.2
Carl Eugen Hoyos
9 years ago
parent
040b4e139b
commit
e1023aa1dd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/img2dec.c
+ 1
- 1
libavformat/img2dec.c
View File
@@ -773,7 +773,7 @@ static int pcx_probe(AVProbeData *p)
if ( p->buf_size < 128
|| b[0] != 10
|| b[1] > 5
|| b[2]
!=
1
|| b[2]
>
1
|| av_popcount(b[3]) != 1 || b[3] > 8
|| AV_RL16(&b[4]) > AV_RL16(&b[8])
|| AV_RL16(&b[6]) > AV_RL16(&b[10])
Write
Preview
Loading…
Cancel
Save