[FFmpeg-soc] [soc]: r3133 - mlp/mlpenc.c
ramiro
subversion at mplayerhq.hu
Sun Aug 10 15:18:47 CEST 2008
Author: ramiro
Date: Sun Aug 10 15:18:47 2008
New Revision: 3133
Log:
Fix writing off bounds from last commit.
Modified:
mlp/mlpenc.c
Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c (original)
+++ mlp/mlpenc.c Sun Aug 10 15:18:47 2008
@@ -847,7 +847,7 @@ static void determine_bits(MLPEncodeCont
int16_t min = INT16_MAX, max = INT16_MIN;
int best_bitcount = INT_MAX;
int best_codebook = 0;
- BestOffset bo[3];
+ BestOffset bo[4];
int average = 0;
int i;
More information about the FFmpeg-soc
mailing list