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
Return EOF for ICO when the end is reached
tags/n3.0
Michael Bradshaw
Carl Eugen Hoyos
9 years ago
parent
5ba40c3c71
commit
244184217c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/icodec.c
+ 1
- 1
libavformat/icodec.c
View File
@@ -124,7 +124,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
int ret;
if (ico->current_image >= ico->nb_images)
return AVERROR
(EIO)
;
return AVERROR
_EOF
;
image = &ico->images[ico->current_image];
Write
Preview
Loading…
Cancel
Save