mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 02:09:22 +00:00
Fix regression not using buffered capture on android v8.
This commit is contained in:
parent
944aa6f028
commit
7b9233ddf8
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ public class AndroidCameraRecordManager {
|
|||
|
||||
parameters.rotation = rotation;
|
||||
parameters.surfaceView = surfaceView;
|
||||
if (version > 8) {
|
||||
if (version >= 8) {
|
||||
recorder = new AndroidCameraRecordBufferedImpl(parameters);
|
||||
} else {
|
||||
recorder = new AndroidCameraRecordImpl(parameters);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue