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
pca: use sizeof(variable) instead of sizeos(TYPE)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer
12 years ago
parent
a4f03f082b
commit
003d497d31
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavutil/pca.c
+ 1
- 1
libavutil/pca.c
View File
@@ -40,7 +40,7 @@ PCA *ff_pca_init(int n){
if(n<=0)
return NULL;
pca= av_mallocz(sizeof(
PCA
));
pca= av_mallocz(sizeof(
*pca
));
pca->n= n;
pca->z = av_malloc(sizeof(*pca->z) * n);
pca->count=0;
Write
Preview
Loading…
Cancel
Save