Android-cuttlefish cvd tool
abgr_buffer.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2026 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#pragma once
18
19#include <api/video/video_frame_buffer.h>
20
21#include <memory>
22
24
25namespace cuttlefish {
26
27class AbgrBuffer : public webrtc::VideoFrameBuffer {
28 public:
29 explicit AbgrBuffer(
30 std::shared_ptr<cuttlefish::PackedVideoFrameBuffer> buffer);
31
32 Type type() const override { return Type::kNative; }
33 int width() const override;
34 int height() const override;
35
36 rtc::scoped_refptr<webrtc::I420BufferInterface> ToI420() override;
37
38 const uint8_t* Data() const;
39 int Stride() const;
40 uint32_t PixelFormat() const { return buffer_->PixelFormat(); }
41
42 private:
43 std::shared_ptr<cuttlefish::PackedVideoFrameBuffer> buffer_;
44};
45
46} // namespace cuttlefish
Definition: abgr_buffer.h:27
std::shared_ptr< cuttlefish::PackedVideoFrameBuffer > buffer_
Definition: abgr_buffer.h:43
uint32_t PixelFormat() const
Definition: abgr_buffer.h:40
AbgrBuffer(std::shared_ptr< cuttlefish::PackedVideoFrameBuffer > buffer)
Definition: abgr_buffer.cpp:27
Type type() const override
Definition: abgr_buffer.h:32
int width() const override
Definition: abgr_buffer.cpp:31
rtc::scoped_refptr< webrtc::I420BufferInterface > ToI420() override
Definition: abgr_buffer.cpp:37
int Stride() const
Definition: abgr_buffer.cpp:35
const uint8_t * Data() const
Definition: abgr_buffer.cpp:34
int height() const override
Definition: abgr_buffer.cpp:32
Definition: alloc_driver.h:20