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:
Mark Cox 2007-04-21 18:47:30 +00:00 committed by Baptiste Coudurier
parent 1c02d96f6d
commit 94cebc5641
1 changed files with 3 additions and 6 deletions

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;