From 6f3e0b21748b53fd7b0471196bbda1d7e561f4fe Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Thu, 19 Jul 2007 15:23:32 +0000 Subject: Replace all occurrences of AVERROR_IO with AVERROR(EIO). Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/daud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/daud.c') diff --git a/libavformat/daud.c b/libavformat/daud.c index 703589726f..e1d901aa16 100644 --- a/libavformat/daud.c +++ b/libavformat/daud.c @@ -37,7 +37,7 @@ static int daud_packet(AVFormatContext *s, AVPacket *pkt) { 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); -- cgit v1.2.3