mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Fix regression not using buffered capture on android v8.
This commit is contained in:
parent
0cda12e3e2
commit
b39b2d5aee
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