LeviLamina
Loading...
Searching...
No Matches
EncodedFrame.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/EncodedImage.h"
7
8namespace webrtc {
9
10class EncodedFrame : public ::webrtc::EncodedImage {
11public:
12 // member variables
13 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 EncodedFrame& operator=(EncodedFrame const&);
27 EncodedFrame(EncodedFrame const&);
28 EncodedFrame();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~EncodedFrame() = default;
34
35 virtual int64 ReceivedTime() const;
36
37 virtual int64 RenderTime() const;
38
39 virtual bool delayed_by_retransmission() const;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace webrtc
Definition EncodedImage.h:12
Definition Alias.h:14