mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
simplify, patch by Mark Cox, melbournemark plus ffmpeg minus devel gmail com
Originally committed as revision 8775 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1c02d96f6d
commit
94cebc5641
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user