1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
// 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_AUDIO_FRAME_DELEGATE_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_RTC_ENCODED_AUDIO_FRAME_DELEGATE_H_
#include <stdint.h>
#include <memory>
#include "base/synchronization/lock.h"
#include "base/time/time.h"
#include "base/types/expected.h"
#include "third_party/blink/renderer/bindings/core/v8/serialization/serialized_script_value.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/platform/wtf/thread_safe_ref_counted.h"
#include "third_party/webrtc/api/frame_transformer_interface.h"
namespace blink {
class DOMArrayBuffer;
// This class wraps a WebRTC audio frame and allows making shallow
// copies. Its purpose is to support making RTCEncodedVideoFrames
// serializable in the same process.
class RTCEncodedAudioFrameDelegate
: public WTF::ThreadSafeRefCounted<RTCEncodedAudioFrameDelegate> {
public:
explicit RTCEncodedAudioFrameDelegate(
std::unique_ptr<webrtc::TransformableAudioFrameInterface> webrtc_frame,
webrtc::ArrayView<const unsigned int> contributing_sources,
std::optional<uint16_t> sequence_number);
uint32_t RtpTimestamp() const;
DOMArrayBuffer* CreateDataBuffer(v8::Isolate* isolate) const;
void SetData(const DOMArrayBuffer* data);
base::expected<void, String> SetRtpTimestamp(uint32_t timestamp);
std::optional<uint32_t> Ssrc() const;
std::optional<uint8_t> PayloadType() const;
std::optional<std::string> MimeType() const;
std::optional<uint16_t> SequenceNumber() const;
Vector<uint32_t> ContributingSources() const;
std::optional<base::TimeTicks> ReceiveTime() const;
std::optional<base::TimeTicks> CaptureTime() const;
std::optional<base::TimeDelta> SenderCaptureTimeOffset() const;
std::unique_ptr<webrtc::TransformableAudioFrameInterface> PassWebRtcFrame();
std::unique_ptr<webrtc::TransformableAudioFrameInterface> CloneWebRtcFrame();
private:
mutable base::Lock lock_;
std::unique_ptr<webrtc::TransformableAudioFrameInterface> webrtc_frame_
GUARDED_BY(lock_);
const Vector<uint32_t> contributing_sources_;
const std::optional<uint16_t> sequence_number_;
};
class MODULES_EXPORT RTCEncodedAudioFramesAttachment
: public SerializedScriptValue::Attachment {
public:
static const void* kAttachmentKey;
RTCEncodedAudioFramesAttachment() = default;
~RTCEncodedAudioFramesAttachment() override = default;
bool IsLockedToAgentCluster() const override {
return !encoded_audio_frames_.empty();
}
Vector<scoped_refptr<RTCEncodedAudioFrameDelegate>>& EncodedAudioFrames() {
return encoded_audio_frames_;
}
const Vector<scoped_refptr<RTCEncodedAudioFrameDelegate>>&
EncodedAudioFrames() const {
return encoded_audio_frames_;
}
private:
Vector<scoped_refptr<RTCEncodedAudioFrameDelegate>> encoded_audio_frames_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_RTC_ENCODED_AUDIO_FRAME_DELEGATE_H_
|