summaryrefslogtreecommitdiff
path: root/libavcodec/xface.h
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-11-22 23:12:51 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-11-23 06:51:18 +0100
commit6369a7b742bd64e7ded377fe79a5d723379ce08d (patch)
treeb499b386e60267de3a4774b86f6888fb878d1eef /libavcodec/xface.h
parentd0682b5eb0d9b6d2c1bc8d03e7ab87c29bb08abc (diff)
xface: Fix encoder crashes due to too small on-stack array.
Also add a FATE test. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/xface.h')
-rw-r--r--libavcodec/xface.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/xface.h b/libavcodec/xface.h
index cd59ba084a..6fbe908b67 100644
--- a/libavcodec/xface.h
+++ b/libavcodec/xface.h
@@ -40,11 +40,12 @@
/*
* Image is encoded as a big integer, using characters from '~' to
- * '!', for a total of 92 symbols. In order to express 48x48=2304
- * bits, we need a total of 354 digits, as given by:
- * ceil(lg_92(2^2304)) = 354
+ * '!', for a total of 94 symbols. In order to express
+ * 48x48*2=8*XFACE_MAX_WORDS=4608
+ * bits, we need a total of 704 digits, as given by:
+ * ceil(lg_94(2^4608)) = 704
*/
-#define XFACE_MAX_DIGITS 354
+#define XFACE_MAX_DIGITS 704
#define XFACE_BITSPERWORD 8
#define XFACE_WORDCARRY (1 << XFACE_BITSPERWORD)