From 68230eb3753f7496c4ba13e727dd48a5997eb23c Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Sat, 17 Dec 2011 05:41:42 +0100
Subject: [PATCH] pixfmts: Selfcheck against insertions / deletions in the
 enum.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
---
 libavutil/utils.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavutil/utils.c b/libavutil/utils.c
index e6c8424ab4d..978ab4c743f 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;
 }
 
-- 
GitLab