# HG changeset patch # User mru # Date 1268605531 0 # Node ID 311037a6cb91b2bcd50ab9e5c09cc1a25e1e46cb # Parent bac1abbd0702461a7843b37d87dc1bcd1e379bbb Add missing includes to libavutil/error.h diff -r bac1abbd0702 -r 311037a6cb91 error.h --- a/error.h Sun Mar 14 21:16:29 2010 +0000 +++ b/error.h Sun Mar 14 22:25:31 2010 +0000 @@ -24,6 +24,9 @@ #ifndef AVUTIL_ERROR_H #define AVUTIL_ERROR_H +#include +#include "avutil.h" + /* error handling */ #if EINVAL > 0 #define AVERROR(e) (-(e)) /**< Returns a negative error code from a POSIX error code, to return from library functions. */