diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-30 06:16:44 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-05-30 06:16:44 +0000 |
commit | 9291fdf7bcaaa09bee752f16761d0b26d88ebfa3 (patch) | |
tree | 6f362e9e74c7cf85fc3310a20fbf932220aa323b | |
parent | 350f2c2cef6ef42975301cdfff4483868463f0fe (diff) | |
download | ffmpeg-9291fdf7bcaaa09bee752f16761d0b26d88ebfa3.tar.gz |
return AVERROR_EOF
Originally committed as revision 18993 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mxfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 2986e8ecae..7f6d439d39 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -339,7 +339,7 @@ static int mxf_read_packet(AVFormatContext *s, AVPacket *pkt) skip: url_fskip(s->pb, klv.length); } - return AVERROR(EIO); + return AVERROR_EOF; } static int mxf_read_primer_pack(MXFContext *mxf) |