lavf/lxfdec: use FFERROR_REDO instead of AVERROR(EAGAIN).

This commit is contained in:
Nicolas George 2015-11-27 18:58:25 +01:00
parent cb14d30240
commit eb2e4fb674
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ static int lxf_read_packet(AVFormatContext *s, AVPacket *pkt)
if (stream > 1) {
av_log(s, AV_LOG_WARNING,
"got packet with illegal stream index %"PRIu32"\n", stream);
return AVERROR(EAGAIN);
return FFERROR_REDO;
}
if (stream == 1 && s->nb_streams < 2) {