Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/media/webrtc/jsapi/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 3 kB image not shown  

Quelle  RemoteTrackSource.cpp

  Sprache: C
 

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#include "RemoteTrackSource.h"

#include "MediaStreamError.h"
#include "MediaTrackGraph.h"
#include "RTCRtpReceiver.h"

namespace mozilla {

NS_IMPL_ADDREF_INHERITED(RemoteTrackSource, dom::MediaStreamTrackSource)
NS_IMPL_RELEASE_INHERITED(RemoteTrackSource, dom::MediaStreamTrackSource)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(RemoteTrackSource)
NS_INTERFACE_MAP_END_INHERITING(dom::MediaStreamTrackSource)
NS_IMPL_CYCLE_COLLECTION_CLASS(RemoteTrackSource)
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(RemoteTrackSource,
                                                dom::MediaStreamTrackSource)
  tmp->Destroy();
  NS_IMPL_CYCLE_COLLECTION_UNLINK(mReceiver)
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(RemoteTrackSource,
                                                  dom::MediaStreamTrackSource)
  NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mReceiver)
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END

RemoteTrackSource::RemoteTrackSource(SourceMediaTrack* aStream,
                                     dom::RTCRtpReceiver* aReceiver,
                                     nsIPrincipal* aPrincipal,
                                     const nsString& aLabel,
                                     TrackingId aTrackingId)
    : dom::MediaStreamTrackSource(aPrincipal, aLabel, std::move(aTrackingId)),
      mStream(aStream),
      mReceiver(aReceiver) {}

RemoteTrackSource::~RemoteTrackSource() { Destroy(); }

void RemoteTrackSource::Destroy() {
  if (mStream) {
    if (mReceiver && mStream->mType == MediaSegment::VIDEO) {
      mReceivingSizeOnEnded = mReceiver->ReceivingSize().orElse(
          [] { return Some(gfx::IntSize{00}); });
    }
    MOZ_ASSERT(!mStream->IsDestroyed());
    mStream->End();
    mStream->Destroy();
    mStream = nullptr;

    GetMainThreadSerialEventTarget()->Dispatch(NewRunnableMethod(
        "RemoteTrackSource::ForceEnded", this, &RemoteTrackSource::ForceEnded));
  }
}

void RemoteTrackSource::GetSettings(dom::MediaTrackSettings& aSettings) {
  if (mReceivingSizeOnEnded) {
    aSettings.mWidth.Construct(mReceivingSizeOnEnded->width);
    aSettings.mHeight.Construct(mReceivingSizeOnEnded->height);
    return;
  }

  if (mStream && mStream->mType == MediaSegment::VIDEO) {
    const gfx::IntSize size = mReceiver->ReceivingSize().valueOrFrom(
        [] { return gfx::IntSize{00}; });
    aSettings.mWidth.Construct(size.width);
    aSettings.mHeight.Construct(size.height);
  }
}

auto RemoteTrackSource::ApplyConstraints(
    const dom::MediaTrackConstraints& aConstraints, dom::CallerType aCallerType)
    -> RefPtr<ApplyConstraintsPromise> {
  return ApplyConstraintsPromise::CreateAndReject(
      MakeRefPtr<MediaMgrError>(
          dom::MediaStreamError::Name::OverconstrainedError, ""),
      __func__);
}

void RemoteTrackSource::SetPrincipal(nsIPrincipal* aPrincipal) {
  mPrincipal = aPrincipal;
  PrincipalChanged();
}

void RemoteTrackSource::SetMuted(bool aMuted) { MutedChanged(aMuted); }

void RemoteTrackSource::ForceEnded() { OverrideEnded(); }

SourceMediaTrack* RemoteTrackSource::Stream() const { return mStream; }

const dom::RTCStatsTimestampMaker* RemoteTrackSource::GetTimestampMaker()
    const {
  if (!mReceiver) {
    return nullptr;
  }
  return mReceiver->GetTimestampMaker();
}

}  // namespace mozilla

Messung V0.5 in Prozent
C=90 H=95 G=92

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.