aboutsummaryrefslogtreecommitdiff
path: root/plugin_store/include/v4l2_codec2/plugin_store/DrmGrallocHelpers.h
blob: 46d29671bddb81b9aaa1393af990203b4bf35afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ANDROID_V4L2_CODEC2_PLUGIN_STORE_STORE_DRM_GRALLOC_HELPERS_H
#define ANDROID_V4L2_CODEC2_PLUGIN_STORE_STORE_DRM_GRALLOC_HELPERS_H

#include <stdint.h>

#include <optional>

namespace android {

std::optional<int> openRenderFd();
std::optional<uint32_t> getDrmHandle(int renderFd, int primeFd);
void closeDrmHandle(int renderFd, uint32_t handle);

}  // namespace android
#endif  // ANDROID_V4L2_CODEC2_PLUGIN_STORE_STORE_DRM_GRALLOC_HELPERS_H