mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/aacenc_ltp: fix use of uninitialized values
Fixes some valgrind warnings. Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
b905ba5bc1
commit
8cd8c83317
@ -74,8 +74,8 @@ void ff_aac_ltp_insert_new_frame(AACEncContext *s)
|
|||||||
|
|
||||||
static void get_lag(float *buf, const float *new, LongTermPrediction *ltp)
|
static void get_lag(float *buf, const float *new, LongTermPrediction *ltp)
|
||||||
{
|
{
|
||||||
int i, j, lag, max_corr = 0;
|
int i, j, lag = 0, max_corr = 0;
|
||||||
float max_ratio;
|
float max_ratio = 0.0f;
|
||||||
for (i = 0; i < 2048; i++) {
|
for (i = 0; i < 2048; i++) {
|
||||||
float corr, s0 = 0.0f, s1 = 0.0f;
|
float corr, s0 = 0.0f, s1 = 0.0f;
|
||||||
const int start = FFMAX(0, i - 1024);
|
const int start = FFMAX(0, i - 1024);
|
||||||
|
Loading…
Reference in New Issue
Block a user