diff au.c @ 482:0fdc96c2f2fe libavformat

sweeping change from -EIO -> AVERROR_IO
author melanson
date Sat, 19 Jun 2004 03:59:34 +0000
parents 60f897e8dd2d
children a9e04ea89942
line wrap: on
line diff
--- a/au.c	Fri Jun 18 03:03:32 2004 +0000
+++ b/au.c	Sat Jun 19 03:59:34 2004 +0000
@@ -159,9 +159,9 @@
     int ret;
 
     if (url_feof(&s->pb))
-        return -EIO;
+        return AVERROR_IO;
     if (av_new_packet(pkt, MAX_SIZE))
-        return -EIO;
+        return AVERROR_IO;
     pkt->stream_index = 0;
 
     ret = get_buffer(&s->pb, pkt->data, pkt->size);