You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
opus_pvq: fix uninitialized variable usage
Fixes CID1400586 Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
This commit is contained in:
@@ -857,8 +857,8 @@ uint32_t ff_celt_encode_band(CeltFrame *f, OpusRangeCoder *rc, const int band,
|
||||
int dualstereo, split;
|
||||
int imid = 0, iside = 0;
|
||||
//uint32_t N0 = N;
|
||||
int N_B;
|
||||
//int N_B0;
|
||||
int N_B = N / blocks;
|
||||
//int N_B0 = N_B;
|
||||
int B0 = blocks;
|
||||
int time_divide = 0;
|
||||
int recombine = 0;
|
||||
@@ -867,7 +867,6 @@ uint32_t ff_celt_encode_band(CeltFrame *f, OpusRangeCoder *rc, const int band,
|
||||
int longblocks = (B0 == 1);
|
||||
uint32_t cm = 0;
|
||||
|
||||
//N_B0 = N_B = N / blocks;
|
||||
split = dualstereo = (Y != NULL);
|
||||
|
||||
if (N == 1) {
|
||||
|
Reference in New Issue
Block a user