mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
244 lines
9.4 KiB
C++
244 lines
9.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-*/
|
|
/* 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/. */
|
|
|
|
#ifndef MOZILLA_TRACKUNIONSTREAM_H_
|
|
#define MOZILLA_TRACKUNIONSTREAM_H_
|
|
|
|
#include "MediaStreamGraph.h"
|
|
|
|
namespace mozilla {
|
|
|
|
#ifdef PR_LOGGING
|
|
#define LOG(type, msg) PR_LOG(gMediaStreamGraphLog, type, msg)
|
|
#else
|
|
#define LOG(type, msg)
|
|
#endif
|
|
|
|
/**
|
|
* See MediaStreamGraph::CreateTrackUnionStream.
|
|
* This file is only included by MediaStreamGraph.cpp so it's OK to put the
|
|
* entire implementation in this header file.
|
|
*/
|
|
class TrackUnionStream : public ProcessedMediaStream {
|
|
public:
|
|
TrackUnionStream(nsDOMMediaStream* aWrapper) :
|
|
ProcessedMediaStream(aWrapper),
|
|
mMaxTrackID(0) {}
|
|
|
|
virtual void RemoveInput(MediaInputPort* aPort)
|
|
{
|
|
for (int32_t i = mTrackMap.Length() - 1; i >= 0; --i) {
|
|
if (mTrackMap[i].mInputPort == aPort) {
|
|
EndTrack(i);
|
|
mTrackMap.RemoveElementAt(i);
|
|
}
|
|
}
|
|
ProcessedMediaStream::RemoveInput(aPort);
|
|
}
|
|
virtual void ProduceOutput(GraphTime aFrom, GraphTime aTo)
|
|
{
|
|
nsAutoTArray<bool,8> mappedTracksFinished;
|
|
nsAutoTArray<bool,8> mappedTracksWithMatchingInputTracks;
|
|
for (uint32_t i = 0; i < mTrackMap.Length(); ++i) {
|
|
mappedTracksFinished.AppendElement(true);
|
|
mappedTracksWithMatchingInputTracks.AppendElement(false);
|
|
}
|
|
bool allFinished = true;
|
|
for (uint32_t i = 0; i < mInputs.Length(); ++i) {
|
|
MediaStream* stream = mInputs[i]->GetSource();
|
|
if (!stream->IsFinishedOnGraphThread()) {
|
|
allFinished = false;
|
|
}
|
|
for (StreamBuffer::TrackIter tracks(stream->GetStreamBuffer());
|
|
!tracks.IsEnded(); tracks.Next()) {
|
|
bool found = false;
|
|
for (uint32_t j = 0; j < mTrackMap.Length(); ++j) {
|
|
TrackMapEntry* map = &mTrackMap[j];
|
|
if (map->mInputPort == mInputs[i] && map->mInputTrack == tracks.get()) {
|
|
bool trackFinished;
|
|
if (map->mOutputTrack->IsEnded()) {
|
|
trackFinished = true;
|
|
} else {
|
|
CopyTrackData(j, aFrom, aTo, &trackFinished);
|
|
}
|
|
mappedTracksFinished[j] = trackFinished;
|
|
mappedTracksWithMatchingInputTracks[j] = true;
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!found) {
|
|
bool trackFinished = false;
|
|
uint32_t mapIndex = AddTrack(mInputs[i], tracks.get(), aFrom);
|
|
CopyTrackData(mapIndex, aFrom, aTo, &trackFinished);
|
|
mappedTracksFinished.AppendElement(trackFinished);
|
|
mappedTracksWithMatchingInputTracks.AppendElement(true);
|
|
}
|
|
}
|
|
}
|
|
for (int32_t i = mTrackMap.Length() - 1; i >= 0; --i) {
|
|
if (mappedTracksFinished[i]) {
|
|
EndTrack(i);
|
|
} else {
|
|
allFinished = false;
|
|
}
|
|
if (!mappedTracksWithMatchingInputTracks[i]) {
|
|
mTrackMap.RemoveElementAt(i);
|
|
}
|
|
}
|
|
if (allFinished && mAutofinish) {
|
|
// All streams have finished and won't add any more tracks, and
|
|
// all our tracks have actually finished and been removed from our map,
|
|
// so we're finished now.
|
|
FinishOnGraphThread();
|
|
}
|
|
mBuffer.AdvanceKnownTracksTime(GraphTimeToStreamTime(aTo));
|
|
}
|
|
|
|
protected:
|
|
// Only non-ended tracks are allowed to persist in this map.
|
|
struct TrackMapEntry {
|
|
MediaInputPort* mInputPort;
|
|
StreamBuffer::Track* mInputTrack;
|
|
StreamBuffer::Track* mOutputTrack;
|
|
nsAutoPtr<MediaSegment> mSegment;
|
|
};
|
|
|
|
uint32_t AddTrack(MediaInputPort* aPort, StreamBuffer::Track* aTrack,
|
|
GraphTime aFrom)
|
|
{
|
|
// Use the ID of the source track if we can, otherwise allocate a new
|
|
// unique ID
|
|
TrackID id = NS_MAX(mMaxTrackID + 1, aTrack->GetID());
|
|
mMaxTrackID = id;
|
|
|
|
TrackRate rate = aTrack->GetRate();
|
|
// Round up the track start time so the track, if anything, starts a
|
|
// little later than the true time. This means we'll have enough
|
|
// samples in our input stream to go just beyond the destination time.
|
|
TrackTicks outputStart = TimeToTicksRoundUp(rate, GraphTimeToStreamTime(aFrom));
|
|
|
|
nsAutoPtr<MediaSegment> segment;
|
|
segment = aTrack->GetSegment()->CreateEmptyClone();
|
|
for (uint32_t j = 0; j < mListeners.Length(); ++j) {
|
|
MediaStreamListener* l = mListeners[j];
|
|
l->NotifyQueuedTrackChanges(Graph(), id, rate, outputStart,
|
|
MediaStreamListener::TRACK_EVENT_CREATED,
|
|
*segment);
|
|
}
|
|
segment->AppendNullData(outputStart);
|
|
StreamBuffer::Track* track =
|
|
&mBuffer.AddTrack(id, rate, outputStart, segment.forget());
|
|
LOG(PR_LOG_DEBUG, ("TrackUnionStream %p adding track %d for input stream %p track %d, start ticks %lld",
|
|
this, id, aPort->GetSource(), aTrack->GetID(),
|
|
(long long)outputStart));
|
|
|
|
TrackMapEntry* map = mTrackMap.AppendElement();
|
|
map->mInputPort = aPort;
|
|
map->mInputTrack = aTrack;
|
|
map->mOutputTrack = track;
|
|
map->mSegment = aTrack->GetSegment()->CreateEmptyClone();
|
|
return mTrackMap.Length() - 1;
|
|
}
|
|
void EndTrack(uint32_t aIndex)
|
|
{
|
|
StreamBuffer::Track* outputTrack = mTrackMap[aIndex].mOutputTrack;
|
|
if (outputTrack->IsEnded())
|
|
return;
|
|
for (uint32_t j = 0; j < mListeners.Length(); ++j) {
|
|
MediaStreamListener* l = mListeners[j];
|
|
TrackTicks offset = outputTrack->GetSegment()->GetDuration();
|
|
nsAutoPtr<MediaSegment> segment;
|
|
segment = outputTrack->GetSegment()->CreateEmptyClone();
|
|
l->NotifyQueuedTrackChanges(Graph(), outputTrack->GetID(),
|
|
outputTrack->GetRate(), offset,
|
|
MediaStreamListener::TRACK_EVENT_ENDED,
|
|
*segment);
|
|
}
|
|
outputTrack->SetEnded();
|
|
}
|
|
void CopyTrackData(uint32_t aMapIndex, GraphTime aFrom, GraphTime aTo,
|
|
bool* aOutputTrackFinished)
|
|
{
|
|
TrackMapEntry* map = &mTrackMap[aMapIndex];
|
|
StreamBuffer::Track* inputTrack = map->mInputTrack;
|
|
StreamBuffer::Track* outputTrack = map->mOutputTrack;
|
|
TrackRate rate = outputTrack->GetRate();
|
|
MediaSegment* segment = map->mSegment;
|
|
MediaStream* source = map->mInputPort->GetSource();
|
|
|
|
NS_ASSERTION(!outputTrack->IsEnded(), "Can't copy to ended track");
|
|
|
|
GraphTime next;
|
|
*aOutputTrackFinished = false;
|
|
for (GraphTime t = aFrom; t < aTo; t = next) {
|
|
MediaInputPort::InputInterval interval = map->mInputPort->GetNextInputInterval(t);
|
|
interval.mEnd = NS_MIN(interval.mEnd, aTo);
|
|
if (interval.mStart >= interval.mEnd)
|
|
break;
|
|
next = interval.mEnd;
|
|
|
|
// Ticks >= startTicks and < endTicks are in the interval
|
|
StreamTime outputEnd = GraphTimeToStreamTime(interval.mEnd);
|
|
TrackTicks startTicks = outputTrack->GetEnd();
|
|
#ifdef DEBUG
|
|
StreamTime outputStart = GraphTimeToStreamTime(interval.mStart);
|
|
#endif
|
|
NS_ASSERTION(startTicks == TimeToTicksRoundUp(rate, outputStart),
|
|
"Samples missing");
|
|
TrackTicks endTicks = TimeToTicksRoundUp(rate, outputEnd);
|
|
TrackTicks ticks = endTicks - startTicks;
|
|
// StreamTime inputStart = source->GraphTimeToStreamTime(interval.mStart);
|
|
StreamTime inputEnd = source->GraphTimeToStreamTime(interval.mEnd);
|
|
TrackTicks inputTrackEndPoint = TRACK_TICKS_MAX;
|
|
|
|
if (inputTrack->IsEnded()) {
|
|
TrackTicks inputEndTicks = inputTrack->TimeToTicksRoundDown(inputEnd);
|
|
if (inputTrack->GetEnd() <= inputEndTicks) {
|
|
inputTrackEndPoint = inputTrack->GetEnd();
|
|
*aOutputTrackFinished = true;
|
|
}
|
|
}
|
|
|
|
if (interval.mInputIsBlocked) {
|
|
// Maybe the input track ended?
|
|
segment->AppendNullData(ticks);
|
|
LOG(PR_LOG_DEBUG, ("TrackUnionStream %p appending %lld ticks of null data to track %d",
|
|
this, (long long)ticks, outputTrack->GetID()));
|
|
} else {
|
|
// Figuring out which samples to use from the input stream is tricky
|
|
// because its start time and our start time may differ by a fraction
|
|
// of a tick. Assuming the input track hasn't ended, we have to ensure
|
|
// that 'ticks' samples are gathered, even though a tick boundary may
|
|
// occur between outputStart and outputEnd but not between inputStart
|
|
// and inputEnd.
|
|
// We'll take the latest samples we can.
|
|
TrackTicks inputEndTicks = TimeToTicksRoundUp(rate, inputEnd);
|
|
TrackTicks inputStartTicks = inputEndTicks - ticks;
|
|
segment->AppendSlice(*inputTrack->GetSegment(),
|
|
NS_MIN(inputTrackEndPoint, inputStartTicks),
|
|
NS_MIN(inputTrackEndPoint, inputEndTicks));
|
|
LOG(PR_LOG_DEBUG, ("TrackUnionStream %p appending %lld ticks of input data to track %d",
|
|
this, (long long)(NS_MIN(inputTrackEndPoint, inputEndTicks) - NS_MIN(inputTrackEndPoint, inputStartTicks)),
|
|
outputTrack->GetID()));
|
|
}
|
|
for (uint32_t j = 0; j < mListeners.Length(); ++j) {
|
|
MediaStreamListener* l = mListeners[j];
|
|
l->NotifyQueuedTrackChanges(Graph(), outputTrack->GetID(),
|
|
outputTrack->GetRate(), startTicks, 0,
|
|
*segment);
|
|
}
|
|
outputTrack->GetSegment()->AppendFrom(segment);
|
|
}
|
|
}
|
|
|
|
nsTArray<TrackMapEntry> mTrackMap;
|
|
TrackID mMaxTrackID;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* MOZILLA_MEDIASTREAMGRAPH_H_ */
|