Commit eb2e4fb6 authored by Nicolas George's avatar Nicolas George

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

parent cb14d302
......@@ -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) {
......
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