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
Remove useless assignment in generate_codebook(). Found by Clang static analyser.
Originally committed as revision 18549 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Vitor Sessak
16 years ago
parent
806d5e61dc
commit
b0e37369a1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/roqvideoenc.c
+ 1
- 1
libavcodec/roqvideoenc.c
View File
@@ -796,7 +796,7 @@ static void generate_codebook(RoqContext *enc, RoqTempdata *tempdata,
{
int i, j, k;
int c_size = size*size/4;
int *buf
= points
;
int *buf;
int *codebook = av_malloc(6*c_size*cbsize*sizeof(int));
int *closest_cb;
Write
Preview
Loading…
Cancel
Save