diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-13 09:43:24 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-13 09:43:24 +0000 |
commit | 60c144f700e2e362047b00704abcb694d49e549c (patch) | |
tree | db26ebb1ced5c97b254e927a703690c247a44974 /libavutil/avutil.h | |
parent | 1e76a1da0534f3a7cdaf7811059beaff874e0504 (diff) | |
download | ffmpeg-60c144f700e2e362047b00704abcb694d49e549c.tar.gz |
Move error code definitions from libavcodec/avcodec.h to
libavutil/error.h.
Error code definitions and handling code belong to libavutil, where
they can be shared by all the libav* libraries.
See the thread:
Subject: [FFmpeg-devel] [PATCH] Move error codes definitions from lavc to lavu
Date: Sun, 19 Jul 2009 12:09:16 +0200
Originally committed as revision 22501 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r-- | libavutil/avutil.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index d44a9068ff..47630a79b0 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -40,7 +40,7 @@ #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) #define LIBAVUTIL_VERSION_MAJOR 50 -#define LIBAVUTIL_VERSION_MINOR 11 +#define LIBAVUTIL_VERSION_MINOR 12 #define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ @@ -69,6 +69,7 @@ const char *avutil_configuration(void); const char *avutil_license(void); #include "common.h" +#include "error.h" #include "mathematics.h" #include "rational.h" #include "intfloat_readwrite.h" |