diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-17 05:41:42 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-17 05:41:42 +0100 |
commit | 68230eb3753f7496c4ba13e727dd48a5997eb23c (patch) | |
tree | 9ca031175ce3300d3db9042f9049061af00e63fc /libavutil | |
parent | f37b2d5a6884c7bea87a6c7454239381449bd637 (diff) | |
download | ffmpeg-68230eb3753f7496c4ba13e727dd48a5997eb23c.tar.gz |
pixfmts: Selfcheck against insertions / deletions in the enum.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/utils.c b/libavutil/utils.c index e6c8424ab4..978ab4c743 100644 --- a/libavutil/utils.c +++ b/libavutil/utils.c @@ -18,6 +18,7 @@ #include "config.h" #include "avutil.h" +#include "avassert.h" /** * @file @@ -26,6 +27,8 @@ unsigned avutil_version(void) { + av_assert0(PIX_FMT_VDA_VLD == 81); //check if the pix fmt enum has not had anything inserted or removed by mistake + return LIBAVUTIL_VERSION_INT; } |