blob: 9e4ea19f1d662eca03c014f78681f903f9bf3e18 [file] [log] [blame]
Changyeon Jo2400b692019-07-18 21:32:48 -07001/*
2 * Copyright (C) 2019 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
17package android.hardware.automotive.evs@1.1;
18
19import @1.0::IEvsCameraStream;
Changyeon Jo47b45af2019-10-11 10:17:33 -070020import @1.1::BufferDesc;
21import @1.1::EvsEvent;
Changyeon Jo2400b692019-07-18 21:32:48 -070022
23/**
Changyeon Jod2a82462019-07-30 11:57:17 -070024 * Implemented on client side to receive asynchronous streaming event deliveries.
Changyeon Jo2400b692019-07-18 21:32:48 -070025 */
26interface IEvsCameraStream extends @1.0::IEvsCameraStream {
Changyeon Jo47b45af2019-10-11 10:17:33 -070027
28 /**
29 * Receives calls from the HAL each time a video frame is ready for inspection.
30 * Buffer handles received by this method must be returned via calls to
31 * IEvsCamera::doneWithFrame_1_1(). When the video stream is stopped via a call
32 * to IEvsCamera::stopVideoStream(), this callback may continue to happen for
33 * some time as the pipeline drains. Each frame must still be returned.
34 * When the last frame in the stream has been delivered, STREAM_STOPPED
35 * event must be delivered. No further frame deliveries may happen
36 * thereafter.
37 *
38 * @param buffer a buffer descriptor of a delivered image frame.
39 */
40 oneway deliverFrame_1_1(BufferDesc buffer);
41
Changyeon Jo2400b692019-07-18 21:32:48 -070042 /**
43 * Receives calls from the HAL each time an event happens.
44 *
45 * @param event EVS event with possible event information.
46 */
Changyeon Jo47b45af2019-10-11 10:17:33 -070047 oneway notify(EvsEvent event);
Changyeon Jo2400b692019-07-18 21:32:48 -070048};