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
simplify, patch by Mark Cox, melbournemark plus ffmpeg minus devel gmail com
Originally committed as revision 8775 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Mark Cox
Baptiste Coudurier
19 years ago
parent
1c02d96f6d
commit
94cebc5641
1 changed files
with
3 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-6
libavcodec/gifdec.c
+ 3
- 6
libavcodec/gifdec.c
View File
@@ -258,16 +258,13 @@ static int gif_parse_next_image(GifState *s)
#endif
switch (code) {
case ',':
if (gif_read_image(s) < 0)
return -1;
return 0;
case ';':
/* end of image */
return -1;
return gif_read_image(s);
case '!':
if (gif_read_extension(s) < 0)
return -1;
break;
case ';':
/* end of image */
default:
/* error or erroneous EOF */
return -1;
Write
Preview
Loading…
Cancel
Save