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
lavfi/unsharp: fix opencl crash on 64bit linux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
highgod0401
Michael Niedermayer
12 years ago
parent
09602dbe7a
commit
9a09a9fc43
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/unsharp_opencl.c
+ 1
- 1
libavfilter/unsharp_opencl.c
View File
@@ -51,7 +51,7 @@ static int compute_mask(int step, uint32_t *mask)
ret = AVERROR(ENOMEM);
goto end;
}
counter = av_mallocz(
counter_size
);
counter = av_mallocz(
sizeof(uint32_t *) * (2 * step + 1)
);
if (!counter) {
ret = AVERROR(ENOMEM);
goto end;
Write
Preview
Loading…
Cancel
Save