# HG changeset patch # User mmu_man # Date 1171391174 0 # Node ID 7ce4d7cde0fbaebe09ef0934df0962cd01adf1a0 # Parent 9a977b2c70691f0044bcafc1ed14aa2d23129ba6 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. diff -r 9a977b2c7069 -r 7ce4d7cde0fb common.h --- a/common.h Tue Feb 13 08:21:47 2007 +0000 +++ b/common.h Tue Feb 13 18:26:14 2007 +0000 @@ -37,11 +37,7 @@ # include # include # include -# ifndef __BEOS__ -# include -# else -# include "berrno.h" -# endif +# include # include #endif /* HAVE_AV_CONFIG_H */