Browse Source

lavf/img2dec: Also auto-detect (unusual) uncompressed pcx.

tags/n3.2
Carl Eugen Hoyos 9 years ago
parent
commit
e1023aa1dd
1 changed files with 1 additions and 1 deletions
  1. +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])


Loading…
Cancel
Save