Browse Source

Patch for PPM probing by (Rob Joyce <rjoyce at twcny dot rr dot com>)

Originally committed as revision 2528 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
28ba74a686
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/pnm.c

+ 1
- 1
libavformat/pnm.c View File

@@ -394,7 +394,7 @@ static int pnm_probe(AVProbeData *pd)
if (pd->buf_size >= 8 &&
p[0] == 'P' &&
p[1] >= '4' && p[1] <= '6' &&
p[2] == '\n')
pnm_space(p[2]) )
return AVPROBE_SCORE_MAX - 1; /* to permit pgmyuv probe */
else
return 0;


Loading…
Cancel
Save