Skip to content

Commit fe83f48

Browse files
committed
Merge pull request cats-oss#64 from lukesleeman/patch-1
Fixed deadlock in getBitmapWithFilterApplied
2 parents 6626a7a + 3140b00 commit fe83f48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/jp/co/cyberagent/android/gpuimage/GPUImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ public void run() {
268268
}
269269
}
270270
});
271-
requestRender();
272271
synchronized(mFilter) {
272+
requestRender();
273273
try {
274274
mFilter.wait();
275275
} catch (InterruptedException e) {

0 commit comments

Comments
 (0)