mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-15 11:44:49 +00:00
Replace AVERROR(EIO) by AVERROR_EOF on end-of-file. See mailinglist
thread "[PATCH] RTSP-MS 15/15: move packet_time_start zero value assignment in asf.c". Originally committed as revision 18531 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7e030c4739
commit
799a0722fc
@ -702,7 +702,7 @@ int ff_asf_parse_packet(AVFormatContext *s, ByteIOContext *pb, AVPacket *pkt)
|
||||
ASFStream *asf_st = 0;
|
||||
for (;;) {
|
||||
if(url_feof(pb))
|
||||
return AVERROR(EIO);
|
||||
return AVERROR_EOF;
|
||||
if (asf->packet_size_left < FRAME_HEADER_SIZE
|
||||
|| asf->packet_segments < 1) {
|
||||
//asf->packet_size_left <= asf->packet_padsize) {
|
||||
|
Loading…
Reference in New Issue
Block a user