diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-11-24 17:59:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-11-24 17:59:56 +0000 |
commit | 28ba74a68661db860dc6ba68eddf35ea5fa20144 (patch) | |
tree | e8f0437ee9dc264e5bda50956095ef47649f768e | |
parent | 105c3d25216a3f84cdb6e37bef33d7cb91ebd9d0 (diff) | |
download | ffmpeg-28ba74a68661db860dc6ba68eddf35ea5fa20144.tar.gz |
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
-rw-r--r-- | libavformat/pnm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/pnm.c b/libavformat/pnm.c index a831e212d2..fb4d3d2ad3 100644 --- a/libavformat/pnm.c +++ b/libavformat/pnm.c @@ -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; |