1 /* 2 * Copyright (C) 2016 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 17 #ifndef DEFAULT_CAMERA_HAL_CAPTURE_REQUEST_H_ 18 #define DEFAULT_CAMERA_HAL_CAPTURE_REQUEST_H_ 19 20 #include <memory> 21 #include <vector> 22 23 #include <camera/CameraMetadata.h> 24 #include <hardware/camera3.h> 25 26 namespace default_camera_hal { 27 28 // A simple wrapper for camera3_capture_request_t, 29 // with a constructor that makes a deep copy from the original struct. 30 struct CaptureRequest { 31 uint32_t frame_number; 32 android::CameraMetadata settings; 33 std::unique_ptr<camera3_stream_buffer_t> input_buffer; 34 std::vector<camera3_stream_buffer_t> output_buffers; 35 36 CaptureRequest(); 37 // Create a deep copy of |request|. 38 CaptureRequest(const camera3_capture_request_t* request); 39 }; 40 41 } // namespace default_camera_hal 42 43 #endif // DEFAULT_CAMERA_HAL_CAPTURE_REQUEST_H_ 44