summaryrefslogtreecommitdiffstats
path: root/libavformat/aiff.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/aiff.c')
-rw-r--r--libavformat/aiff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c
index 9f476cb..6f1d9cd 100644
--- a/libavformat/aiff.c
+++ b/libavformat/aiff.c
@@ -64,7 +64,7 @@ static int get_tag(ByteIOContext *pb, uint32_t * tag)
int size;
if (url_feof(pb))
- return AVERROR_IO;
+ return AVERROR(EIO);
*tag = get_le32(pb);
size = get_be32(pb);
@@ -400,7 +400,7 @@ static int aiff_read_packet(AVFormatContext *s,
/* End of stream may be reached */
if (url_feof(&s->pb))
- return AVERROR_IO;
+ return AVERROR(EIO);
/* Now for that packet */
res = av_get_packet(&s->pb, pkt, (MAX_SIZE / st->codec->block_align) * st->codec->block_align);
OpenPOWER on IntegriCloud