You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Adds support for video stabilization to camera:
Adds getVideoStabilizationSupportedModes() and
setVideoStabilizationMode() methods to CameraController.
- Adds support for video stabilization to camera_avfoundation
- Adds support for video stabilization to camera_android_camerax
- Adds support for video stabilization to camera_platform_interface:
- Adds getVideoStabilizationSupportedModes() and
setVideoStabilizationMode() methods to CameraPlatform.
- Adds VideoStabilizationMode enum to represent an
abstraction of the available video stabilization modes,
meant for Android and iOS, mapped as follows:
/// Video stabilization is disabled.
off,
/// Standard video stabilization is enabled.
/// Maps to CONTROL_VIDEO_STABILIZATION_MODE_ON on Android
/// and to AVCaptureVideoStabilizationModeStandard on iOS.
standard,
/// Cinematic video stabilization is enabled.
/// Maps to CONTROL_VIDEO_STABILIZATION_MODE_PREVIEW_STABILIZATION on Android
/// and to AVCaptureVideoStabilizationModeCinematic on iOS.
cinematic,
/// Extended cinematic video stabilization is enabled.
/// The same as cinematic on Android, so maps to CONTROL_VIDEO_STABILIZATION_MODE_PREVIEW_STABILIZATION.
/// Maps to AVCaptureVideoStabilizationModeCinematicExtended on iOS.
cinematicExtended,
0 commit comments