blob: 7f5b08ccf5a145397ba13c885bda1e2e83c2bad5 [file] [log] [blame]
Roman Stratiienko946126c2020-10-02 19:01:10 +03001/*
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +03002 * Copyright (C) 2020 The Android Open Source Project
Roman Stratiienko946126c2020-10-02 19:01:10 +03003 *
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
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030017#ifndef BUFFERINFOLIBDRM_H_
18#define BUFFERINFOLIBDRM_H_
Roman Stratiienko946126c2020-10-02 19:01:10 +030019
20#include <hardware/gralloc.h>
21
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030022#include "bufferinfo/BufferInfoGetter.h"
Roman Stratiienko946126c2020-10-02 19:01:10 +030023
24namespace android {
25
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030026class BufferInfoLibdrm : public LegacyBufferInfoGetter {
Roman Stratiienko946126c2020-10-02 19:01:10 +030027 public:
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030028 using LegacyBufferInfoGetter::LegacyBufferInfoGetter;
Roman Stratiienkoe9fbd8d2022-02-21 13:03:29 +020029 auto GetBoInfo(buffer_handle_t handle) -> std::optional<BufferInfo> override;
Roman Stratiienko39d8f7e2021-11-30 17:06:44 +020030 int ValidateGralloc() override;
Roman Stratiienko946126c2020-10-02 19:01:10 +030031
32 private:
Roman Stratiienko1cbaaf92022-02-21 10:52:18 +020033 bool GetYuvPlaneInfo(uint32_t hal_format, int num_fds, buffer_handle_t handle,
34 BufferInfo *bo);
Roman Stratiienko946126c2020-10-02 19:01:10 +030035};
36
37} // namespace android
38
39#endif