mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 03:28:27 +00:00
avfilter/vf_signature: Allocate arrays together
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
22adbc0a28
commit
b10d50c53f
@ -250,14 +250,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *picref)
|
||||
int64_t* elemsignature;
|
||||
uint64_t* sortsignature;
|
||||
|
||||
elemsignature = av_malloc_array(elemcat->elem_count, sizeof(int64_t));
|
||||
elemsignature = av_malloc_array(elemcat->elem_count, 2 * sizeof(int64_t));
|
||||
if (!elemsignature)
|
||||
return AVERROR(ENOMEM);
|
||||
sortsignature = av_malloc_array(elemcat->elem_count, sizeof(int64_t));
|
||||
if (!sortsignature) {
|
||||
av_freep(&elemsignature);
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
sortsignature = elemsignature + elemcat->elem_count;
|
||||
|
||||
for (j = 0; j < elemcat->elem_count; j++) {
|
||||
blocksum = 0;
|
||||
@ -307,7 +303,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *picref)
|
||||
f++;
|
||||
}
|
||||
av_freep(&elemsignature);
|
||||
av_freep(&sortsignature);
|
||||
}
|
||||
|
||||
/* confidence */
|
||||
|
Loading…
Reference in New Issue
Block a user