[FFmpeg-devel] [PATCH] huffyuv: make VLAs fixed size

Mans Rullgard mans
Fri Jun 25 03:54:43 CEST 2010


---
 libavcodec/huffyuv.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c
index 7764c35..f5125b6 100644
--- a/libavcodec/huffyuv.c
+++ b/libavcodec/huffyuv.c
@@ -232,9 +232,9 @@ static void heap_sift(HeapElem *h, int root, int size)
 }
 
 static void generate_len_table(uint8_t *dst, const uint64_t *stats, int size){
-    HeapElem h[size];
-    int up[2*size];
-    int len[2*size];
+    HeapElem h[256];
+    int up[2*256];
+    int len[2*256];
     int offset, i, next;
 
     for(offset=1; ; offset<<=1){
-- 
1.7.1




More information about the ffmpeg-devel mailing list