Browse Source

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

tags/n3.0
Nicolas George 10 years ago
parent
commit
cb14d30240
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mpeg.c

+ 1
- 1
libavformat/mpeg.c View File

@@ -256,7 +256,7 @@ redo:
if (avio_feof(s->pb))
return AVERROR_EOF;
// FIXME we should remember header_state
return AVERROR(EAGAIN);
return FFERROR_REDO;
}

if (startcode == PACK_START_CODE)


Loading…
Cancel
Save