This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/dcaadpcm: fix use of uninitialized variable
Fixes CID 1409924.
tags/n3.4
foo86
8 years ago
parent
34fb84a97d
commit
dd4b7badb4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/dcaadpcm.c
+ 1
- 1
libavcodec/dcaadpcm.c
View File
@@ -80,7 +80,7 @@ static int64_t find_best_filter(const DCAADPCMEncContext *s, const int32_t *in,
{
const premultiplied_coeffs *precalc_data = s->private_data;
int i, j, k = 0;
int vq;
int vq
= -1
;
int64_t err;
int64_t min_err = 1ll << 62;
int64_t corr[15];
Write
Preview
Loading…
Cancel
Save