From 4b01867f69b18bfddfea33a131ac1219eabc88a5 Mon Sep 17 00:00:00 2001 From: Philipp Tomsich Date: Wed, 23 Aug 2017 19:54:39 +0200 Subject: Import of Rockchip Android 7.1.1 SDK --- platformdrmgeneric.h | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 platformdrmgeneric.h (limited to 'platformdrmgeneric.h') diff --git a/platformdrmgeneric.h b/platformdrmgeneric.h new file mode 100644 index 0000000..62aa4e2 --- /dev/null +++ b/platformdrmgeneric.h @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef ANDROID_PLATFORM_DRM_GENERIC_H_ +#define ANDROID_PLATFORM_DRM_GENERIC_H_ + +#include "drmresources.h" +#include "platform.h" + +#include + +namespace android { + +class DrmGenericImporter : public Importer { + public: + DrmGenericImporter(DrmResources *drm); + ~DrmGenericImporter() override; + + int Init(); + +#if RK_VIDEO_SKIP_LINE + int ImportBuffer(buffer_handle_t handle, hwc_drm_bo_t *bo, bool bSkipLine) override; +#else + int ImportBuffer(buffer_handle_t handle, hwc_drm_bo_t *bo) override; +#endif + int ReleaseBuffer(hwc_drm_bo_t *bo) override; + + private: + uint32_t ConvertHalFormatToDrm(uint32_t hal_format); + + DrmResources *drm_; + + const gralloc_module_t *gralloc_; +}; +} + +#endif -- cgit v1.2.2-2-gfde8