LeviLamina
Loading...
Searching...
No Matches
I420Buffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/scoped_refptr.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class I420BufferInterface; }
11// clang-format on
12
13namespace webrtc {
14
16public:
17 // member functions
18 // NOLINTBEGIN
19 MCAPI void CropAndScaleFrom(::webrtc::I420BufferInterface const&, int, int, int, int);
20
21 MCAPI I420Buffer(int, int);
22
23 MCAPI I420Buffer(int, int, int, int, int);
24
25 MCAPI uchar* MutableDataU();
26
27 MCAPI uchar* MutableDataV();
28
29 MCAPI uchar* MutableDataY();
30 // NOLINTEND
31
32public:
33 // static functions
34 // NOLINTBEGIN
35 MCAPI static ::webrtc::scoped_refptr<::webrtc::I420Buffer> Create(int, int);
36
37 MCAPI static void SetBlack(::webrtc::I420Buffer*);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(int, int);
44
45 MCAPI void* $ctor(int, int, int, int, int);
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
54
55} // namespace webrtc
Definition I420BufferInterface.h:12
Definition I420Buffer.h:15