mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
vp6: convert VLA to fixed size
Originally committed as revision 23754 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
89c7d8058c
commit
796cea09b6
@ -36,6 +36,7 @@
|
||||
#include "vp56data.h"
|
||||
#include "vp6data.h"
|
||||
|
||||
#define VP6_MAX_HUFF_SIZE 12
|
||||
|
||||
static void vp6_parse_coeff(VP56Context *s);
|
||||
static void vp6_parse_coeff_huffman(VP56Context *s);
|
||||
@ -215,7 +216,7 @@ static int vp6_huff_cmp(const void *va, const void *vb)
|
||||
static void vp6_build_huff_tree(VP56Context *s, uint8_t coeff_model[],
|
||||
const uint8_t *map, unsigned size, VLC *vlc)
|
||||
{
|
||||
Node nodes[2*size], *tmp = &nodes[size];
|
||||
Node nodes[2*VP6_MAX_HUFF_SIZE], *tmp = &nodes[size];
|
||||
int a, b, i;
|
||||
|
||||
/* first compute probabilities from model */
|
||||
|
Loading…
Reference in New Issue
Block a user