LeviLamina
Loading...
Searching...
No Matches
EncodedImageBufferInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountInterface.h"
7
8namespace webrtc {
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual uchar const* data() const = 0;
15
16 virtual uchar* data() = 0;
17
18 virtual uint64 size() const = 0;
19
20 virtual ~EncodedImageBufferInterface() /*override*/ = default;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26
27 // NOLINTEND
28};
29
30} // namespace webrtc
Definition EncodedImageBufferInterface.h:10
Definition RefCountInterface.h:10