blob: bf3be9ac52b261a03b9f4a058516a02fd05bf00a [file] [log] [blame]
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -08001/*
2 * Copyright 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 ANDROID_HARDWARE_MEDIA_OMX_V1_0_WGRAPHICBUFFERSOURCE_H
18#define ANDROID_HARDWARE_MEDIA_OMX_V1_0_WGRAPHICBUFFERSOURCE_H
19
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -080020#include <hidl/MQDescriptor.h>
21#include <hidl/Status.h>
22
Pawin Vongmasa0d3a5ed2017-02-22 03:19:35 -080023#include <binder/Binder.h>
Pawin Vongmasaac7d4122017-03-01 05:48:42 -080024#include <media/IOMX.h>
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -080025
26#include <android/hardware/graphics/common/1.0/types.h>
Pawin Vongmasa0d3a5ed2017-02-22 03:19:35 -080027#include <android/hardware/media/omx/1.0/IOmxNode.h>
28#include <android/hardware/media/omx/1.0/IGraphicBufferSource.h>
29
30#include <android/BnGraphicBufferSource.h>
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -080031
32namespace android {
33namespace hardware {
34namespace media {
35namespace omx {
36namespace V1_0 {
37namespace utils {
38
39using ::android::hardware::graphics::common::V1_0::Dataspace;
40using ::android::hardware::media::omx::V1_0::ColorAspects;
41using ::android::hardware::media::omx::V1_0::IGraphicBufferSource;
42using ::android::hardware::media::omx::V1_0::IOmxNode;
43using ::android::hidl::base::V1_0::IBase;
44using ::android::hardware::hidl_array;
45using ::android::hardware::hidl_memory;
46using ::android::hardware::hidl_string;
47using ::android::hardware::hidl_vec;
48using ::android::hardware::Return;
49using ::android::hardware::Void;
50using ::android::sp;
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -080051using ::android::IOMXNode;
52
53/**
54 * Wrapper classes for conversion
55 * ==============================
56 *
57 * Naming convention:
58 * - LW = Legacy Wrapper --- It wraps a Treble object inside a legacy object.
59 * - TW = Treble Wrapper --- It wraps a legacy object inside a Treble object.
60 */
61
Robert Shihd095e652017-03-11 01:20:43 +000062typedef ::android::binder::Status BnStatus;
Pawin Vongmasa8ff40182017-02-07 02:22:34 -080063typedef ::android::BnGraphicBufferSource BnGraphicBufferSource;
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -080064typedef ::android::hardware::media::omx::V1_0::IGraphicBufferSource
65 TGraphicBufferSource;
66
Pawin Vongmasa8ff40182017-02-07 02:22:34 -080067struct LWGraphicBufferSource : public BnGraphicBufferSource {
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -080068 sp<TGraphicBufferSource> mBase;
69 LWGraphicBufferSource(sp<TGraphicBufferSource> const& base);
Pawin Vongmasa22dc5082017-04-20 05:12:55 -070070 BnStatus configure(const sp<IOMXNode>& omxNode, int32_t dataSpace) override;
Robert Shihd095e652017-03-11 01:20:43 +000071 BnStatus setSuspend(bool suspend, int64_t timeUs) override;
Pawin Vongmasa22dc5082017-04-20 05:12:55 -070072 BnStatus setRepeatPreviousFrameDelayUs(int64_t repeatAfterUs) override;
Robert Shihd095e652017-03-11 01:20:43 +000073 BnStatus setMaxFps(float maxFps) override;
Pawin Vongmasa22dc5082017-04-20 05:12:55 -070074 BnStatus setTimeLapseConfig(double fps, double captureFps) override;
Robert Shihd095e652017-03-11 01:20:43 +000075 BnStatus setStartTimeUs(int64_t startTimeUs) override;
76 BnStatus setStopTimeUs(int64_t stopTimeUs) override;
Hangyu Kuangf72cefd2017-04-05 11:07:08 -070077 BnStatus getStopTimeOffsetUs(int64_t *stopTimeOffsetUs) override;
Robert Shihd095e652017-03-11 01:20:43 +000078 BnStatus setColorAspects(int32_t aspects) override;
79 BnStatus setTimeOffsetUs(int64_t timeOffsetsUs) override;
80 BnStatus signalEndOfInputStream() override;
Pawin Vongmasaeeac97b2017-01-18 05:03:07 -080081};
82
83} // namespace utils
84} // namespace V1_0
85} // namespace omx
86} // namespace media
87} // namespace hardware
88} // namespace android
89
90#endif // ANDROID_HARDWARE_MEDIA_OMX_V1_0_WGRAPHICBUFFERSOURCE_H