This fixes error handling for BeOS, removing the need for some ifdefs.

AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h.
Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed.
Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code.
This also removes the need for berrno.h.

Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
François Revol
2007-02-13 18:26:14 +00:00
parent bcdf0d2697
commit 8fa36ae09d
32 changed files with 93 additions and 97 deletions

View File

@ -120,7 +120,7 @@ static int http_open(URLContext *h, const char *uri, int flags)
s = av_malloc(sizeof(HTTPContext));
if (!s) {
return -ENOMEM;
return AVERROR(ENOMEM);
}
h->priv_data = s;
s->filesize = -1;