[go: nahoru, domu]

blob: 4b498825ca75c808272eb327f2fb9809ce6ff27a [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_RTC_ENCODED_VIDEO_FRAME_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_RTC_ENCODED_VIDEO_FRAME_H_
#include <stdint.h>
#include <memory>
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/heap/member.h"
#include "third_party/blink/renderer/platform/runtime_enabled_features.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace webrtc {
class TransformableVideoFrameInterface;
} // namespace webrtc
namespace blink {
class DOMArrayBuffer;
class RTCEncodedVideoFrameDelegate;
class RTCEncodedVideoFrameMetadata;
class MODULES_EXPORT RTCEncodedVideoFrame final : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
explicit RTCEncodedVideoFrame(
std::unique_ptr<webrtc::TransformableVideoFrameInterface> webrtc_frame);
explicit RTCEncodedVideoFrame(
scoped_refptr<RTCEncodedVideoFrameDelegate> delegate);
// rtc_encoded_video_frame.idl implementation.
String type() const;
// Returns the RTP Packet Timestamp for this frame.
uint32_t timestamp() const;
void setTimestamp(uint32_t timestamp, ExceptionState& exception_state);
DOMArrayBuffer* data() const;
RTCEncodedVideoFrameMetadata* getMetadata() const;
void setMetadata(RTCEncodedVideoFrameMetadata* metadata,
ExceptionState& exception_state);
void setData(DOMArrayBuffer*);
String toString() const;
RTCEncodedVideoFrame* clone(ExceptionState& exception_state) const;
scoped_refptr<RTCEncodedVideoFrameDelegate> Delegate() const;
void SyncDelegate() const;
// Returns and transfers ownership of the internal WebRTC frame
// backing this RTCEncodedVideoFrame, neutering all RTCEncodedVideoFrames
// backed by that internal WebRTC frame.
std::unique_ptr<webrtc::TransformableVideoFrameInterface> PassWebRtcFrame();
void Trace(Visitor*) const override;
private:
const scoped_refptr<RTCEncodedVideoFrameDelegate> delegate_;
// Exposes encoded frame data from |delegate_|.
mutable Member<DOMArrayBuffer> frame_data_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_RTC_ENCODED_VIDEO_FRAME_H_