LeviLamina
Loading...
Searching...
No Matches
EncodedImageBuffer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/EncodedImageBufferInterface.h"
7#include "mc/external/webrtc/scoped_refptr.h"
8
9namespace webrtc {
10
12public:
13 // member variables
14 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 EncodedImageBuffer& operator=(EncodedImageBuffer const&);
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 4
29 virtual uchar const* data() const /*override*/;
30
31 // vIndex: 3
32 virtual uchar* data() /*override*/;
33
34 // vIndex: 5
35 virtual uint64 size() const /*override*/;
36
37 // vIndex: 2
38 virtual ~EncodedImageBuffer() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI explicit EncodedImageBuffer(uint64);
45
46 MCAPI EncodedImageBuffer(uchar const*, uint64);
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCAPI static ::webrtc::scoped_refptr<::webrtc::EncodedImageBuffer> Create(uchar const*, uint64);
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(uint64);
59
60 MCAPI void* $ctor(uchar const*, uint64);
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66
67 // NOLINTEND
68
69public:
70 // virtual function thunks
71 // NOLINTBEGIN
72
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCAPI static void** $vftable();
79 // NOLINTEND
80};
81
82} // namespace webrtc
Definition EncodedImageBufferInterface.h:10
Definition EncodedImageBuffer.h:11
Definition Alias.h:14