1 /* 2 * Copyright (C) 2024 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.google.jetpackcamera.core.camera 17 18 import android.net.Uri 19 20 /** 21 * Represents events that control video capture operations. 22 */ 23 sealed interface VideoCaptureControlEvent { 24 25 /** 26 * Starts video recording. 27 * 28 * @param onVideoRecord Callback to handle video recording events. 29 */ 30 class StartRecordingEvent( 31 val videoCaptureUri: Uri?, 32 val shouldUseUri: Boolean, 33 val maxVideoDuration: Long, 34 val onVideoRecord: (CameraUseCase.OnVideoRecordEvent) -> Unit 35 ) : VideoCaptureControlEvent 36 37 /** 38 * Pauses a video recording. 39 */ 40 data object PauseRecordingEvent : VideoCaptureControlEvent 41 42 /** 43 * Resumes a paused video recording. 44 */ 45 data object ResumeRecordingEvent : VideoCaptureControlEvent 46 47 /** 48 * Stops video recording. 49 */ 50 data object StopRecordingEvent : VideoCaptureControlEvent 51 } 52