diff common.h @ 1018:61cb1c0a6eb6 libavutil

Add av_popcount() to libavutil/common.h and bump minor version
author thardin
date Tue, 14 Sep 2010 14:45:43 +0000
parents f197db9ab43a
children
line wrap: on
line diff
--- a/common.h	Tue Sep 14 00:17:58 2010 +0000
+++ b/common.h	Tue Sep 14 14:45:43 2010 +0000
@@ -192,6 +192,20 @@
     return av_log2((x - 1) << 1);
 }
 
+/**
+ * Count number of bits set to one in x
+ * @param x value to count bits of
+ * @return the number of bits set to one in x
+ */
+static inline av_const int av_popcount_c(uint32_t x)
+{
+    x -= (x >> 1) & 0x55555555;
+    x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
+    x = (x + (x >> 4)) & 0x0F0F0F0F;
+    x += x >> 8;
+    return (x + (x >> 16)) & 0x3F;
+}
+
 #define MKTAG(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
 #define MKBETAG(a,b,c,d) ((d) | ((c) << 8) | ((b) << 16) | ((a) << 24))
 
@@ -351,3 +365,6 @@
 #ifndef av_clipf
 #   define av_clipf         av_clipf_c
 #endif
+#ifndef av_popcount
+#   define av_popcount      av_popcount_c
+#endif