Commit 279e7100 authored by michael's avatar michael

Replace 2 return AVERROR(EAGAIN); by continue, these being nicer

and the EAGAIN where just added as example not because they made sense.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17783 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 72764376
......@@ -348,7 +348,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
skip:
url_fseek(s->pb, next, SEEK_SET);
return AVERROR(EAGAIN);
continue;
}
/* skip empty data packets */
......@@ -372,7 +372,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
|| st->discard >= AVDISCARD_ALL
){
url_fseek(s->pb, next, SEEK_SET);
return AVERROR(EAGAIN);
continue;
}
if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)
av_add_index_entry(st, pos, dts, size, 0, AVINDEX_KEYFRAME);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment