1 /**
2  * Copyright (c) 2021, 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 android.hardware.camera2.extension;
17 
18 import android.hardware.camera2.extension.IImageProcessorImpl;
19 import android.hardware.camera2.extension.IRequestCallback;
20 import android.hardware.camera2.extension.OutputConfigId;
21 import android.hardware.camera2.extension.Request;
22 
23 /** @hide */
24 interface IRequestProcessorImpl
25 {
setImageProcessor(in OutputConfigId outputConfigId, in IImageProcessorImpl imageProcessor)26     void setImageProcessor(in OutputConfigId outputConfigId, in IImageProcessorImpl imageProcessor);
submit(in Request request, in IRequestCallback callback)27     int submit(in Request request, in IRequestCallback callback);
submitBurst(in List<Request> requests, in IRequestCallback callback)28     int submitBurst(in List<Request> requests, in IRequestCallback callback);
setRepeating(in Request request, in IRequestCallback callback)29     int setRepeating(in Request request, in IRequestCallback callback);
abortCaptures()30     void abortCaptures();
stopRepeating()31     void stopRepeating();
32 }
33