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
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
105c3d2521
commit
28ba74a686
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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'
)
p
nm_space(p[2])
)
return AVPROBE_SCORE_MAX - 1; /* to permit pgmyuv probe */
else
return 0;
Write
Preview
Loading…
Cancel
Save