diff daud.c @ 2274:b21c2af60bc9 libavformat

Replace all occurrences of AVERROR_IO with AVERROR(EIO).
author takis
date Thu, 19 Jul 2007 15:23:32 +0000
parents 6ebff294b07c
children d52c718e83f9
line wrap: on
line diff
--- a/daud.c	Thu Jul 19 15:21:30 2007 +0000
+++ b/daud.c	Thu Jul 19 15:23:32 2007 +0000
@@ -37,7 +37,7 @@
     ByteIOContext *pb = &s->pb;
     int ret, size;
     if (url_feof(pb))
-        return AVERROR_IO;
+        return AVERROR(EIO);
     size = get_be16(pb);
     get_be16(pb); // unknown
     ret = av_get_packet(pb, pkt, size);