#include "logging/rtc_event_log/events/rtc_event_frame_decoded.h"
#include <cstdint>
#include <memory>
#include "absl/memory/memory.h"
#include "api/rtc_event_log/rtc_event.h"
#include "api/video/video_codec_type.h"
namespace webrtc {
RtcEventFrameDecoded::RtcEventFrameDecoded(int64_t render_time_ms,
uint32_t ssrc,
int width,
int height,
VideoCodecType codec,
uint8_t qp)
: … { … }
RtcEventFrameDecoded::RtcEventFrameDecoded(const RtcEventFrameDecoded& other)
: … { … }
std::unique_ptr<RtcEventFrameDecoded> RtcEventFrameDecoded::Copy() const { … }
}