2014-04-14 04:24:00 -07:00
|
|
|
/* -*- mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2013-09-26 22:22:37 -07:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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 "MediaSourceDecoder.h"
|
|
|
|
|
2014-08-21 19:14:36 -07:00
|
|
|
#include "prlog.h"
|
2013-09-26 22:22:37 -07:00
|
|
|
#include "mozilla/dom/HTMLMediaElement.h"
|
2013-10-05 01:04:39 -07:00
|
|
|
#include "mozilla/dom/TimeRanges.h"
|
2014-08-13 05:22:00 -07:00
|
|
|
#include "MediaDecoderStateMachine.h"
|
2013-10-05 01:04:39 -07:00
|
|
|
#include "MediaSource.h"
|
2014-08-13 05:22:00 -07:00
|
|
|
#include "MediaSourceReader.h"
|
|
|
|
#include "MediaSourceResource.h"
|
2014-08-20 01:07:00 -07:00
|
|
|
#include "MediaSourceUtils.h"
|
2015-02-12 21:52:42 -08:00
|
|
|
#include "SourceBufferDecoder.h"
|
2015-02-11 23:52:12 -08:00
|
|
|
#include "VideoUtils.h"
|
2014-07-22 01:20:00 -07:00
|
|
|
|
2013-09-26 22:22:37 -07:00
|
|
|
#ifdef PR_LOGGING
|
2014-08-10 18:21:17 -07:00
|
|
|
extern PRLogModuleInfo* GetMediaSourceLog();
|
|
|
|
|
2015-02-11 23:52:13 -08:00
|
|
|
#define MSE_DEBUG(arg, ...) PR_LOG(GetMediaSourceLog(), PR_LOG_DEBUG, ("MediaSourceDecoder(%p)::%s: " arg, this, __func__, ##__VA_ARGS__))
|
|
|
|
#define MSE_DEBUGV(arg, ...) PR_LOG(GetMediaSourceLog(), PR_LOG_DEBUG + 1, ("MediaSourceDecoder(%p)::%s: " arg, this, __func__, ##__VA_ARGS__))
|
2013-09-26 22:22:37 -07:00
|
|
|
#else
|
2014-03-04 19:35:46 -08:00
|
|
|
#define MSE_DEBUG(...)
|
2014-08-10 18:21:17 -07:00
|
|
|
#define MSE_DEBUGV(...)
|
2013-09-26 22:22:37 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2014-08-21 19:14:36 -07:00
|
|
|
class SourceBufferDecoder;
|
2013-09-26 22:22:37 -07:00
|
|
|
|
2013-11-17 20:22:47 -08:00
|
|
|
MediaSourceDecoder::MediaSourceDecoder(dom::HTMLMediaElement* aElement)
|
2013-09-26 22:22:37 -07:00
|
|
|
: mMediaSource(nullptr)
|
2014-11-11 20:11:33 -08:00
|
|
|
, mMediaSourceDuration(UnspecifiedNaN<double>())
|
2013-09-26 22:22:37 -07:00
|
|
|
{
|
|
|
|
Init(aElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaDecoder*
|
|
|
|
MediaSourceDecoder::Clone()
|
|
|
|
{
|
|
|
|
// TODO: Sort out cloning.
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaDecoderStateMachine*
|
|
|
|
MediaSourceDecoder::CreateStateMachine()
|
|
|
|
{
|
2014-08-24 21:09:44 -07:00
|
|
|
mReader = new MediaSourceReader(this);
|
2014-08-17 04:29:00 -07:00
|
|
|
return new MediaDecoderStateMachine(this, mReader);
|
2013-09-26 22:22:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
MediaSourceDecoder::Load(nsIStreamListener**, MediaDecoder*)
|
|
|
|
{
|
2014-02-17 14:53:51 -08:00
|
|
|
MOZ_ASSERT(!mDecoderStateMachine);
|
|
|
|
mDecoderStateMachine = CreateStateMachine();
|
|
|
|
if (!mDecoderStateMachine) {
|
|
|
|
NS_WARNING("Failed to create state machine!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2014-08-05 07:55:02 -07:00
|
|
|
nsresult rv = mDecoderStateMachine->Init(nullptr);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
SetStateMachineParameters();
|
2014-12-22 00:20:31 -08:00
|
|
|
return ScheduleStateMachineThread();
|
2013-09-26 22:22:37 -07:00
|
|
|
}
|
|
|
|
|
2013-10-05 01:04:39 -07:00
|
|
|
nsresult
|
2013-11-17 20:22:47 -08:00
|
|
|
MediaSourceDecoder::GetSeekable(dom::TimeRanges* aSeekable)
|
2013-10-05 01:04:39 -07:00
|
|
|
{
|
2014-08-24 21:09:44 -07:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
if (!mMediaSource) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2014-09-15 20:15:55 -07:00
|
|
|
|
2013-10-05 01:04:39 -07:00
|
|
|
double duration = mMediaSource->Duration();
|
|
|
|
if (IsNaN(duration)) {
|
|
|
|
// Return empty range.
|
|
|
|
} else if (duration > 0 && mozilla::IsInfinite(duration)) {
|
2013-11-17 20:22:47 -08:00
|
|
|
nsRefPtr<dom::TimeRanges> bufferedRanges = new dom::TimeRanges();
|
2014-11-11 20:50:21 -08:00
|
|
|
mReader->GetBuffered(bufferedRanges);
|
2014-04-21 06:30:00 -07:00
|
|
|
aSeekable->Add(bufferedRanges->GetStartTime(), bufferedRanges->GetEndTime());
|
2013-10-05 01:04:39 -07:00
|
|
|
} else {
|
|
|
|
aSeekable->Add(0, duration);
|
|
|
|
}
|
2015-02-11 23:52:13 -08:00
|
|
|
MSE_DEBUG("ranges=%s", DumpTimeRanges(aSeekable).get());
|
2013-10-05 01:04:39 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-08-24 21:09:44 -07:00
|
|
|
void
|
|
|
|
MediaSourceDecoder::Shutdown()
|
|
|
|
{
|
2015-02-11 23:52:13 -08:00
|
|
|
MSE_DEBUG("Shutdown");
|
2014-11-03 20:24:52 -08:00
|
|
|
// Detach first so that TrackBuffers are unused on the main thread when
|
|
|
|
// shut down on the decode task queue.
|
2014-08-27 20:44:58 -07:00
|
|
|
if (mMediaSource) {
|
|
|
|
mMediaSource->Detach();
|
|
|
|
}
|
2014-11-03 20:24:52 -08:00
|
|
|
|
|
|
|
MediaDecoder::Shutdown();
|
2014-08-24 21:09:44 -07:00
|
|
|
// Kick WaitForData out of its slumber.
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
|
|
|
mon.NotifyAll();
|
|
|
|
}
|
|
|
|
|
2014-04-14 04:24:00 -07:00
|
|
|
/*static*/
|
|
|
|
already_AddRefed<MediaResource>
|
2014-10-14 18:17:03 -07:00
|
|
|
MediaSourceDecoder::CreateResource(nsIPrincipal* aPrincipal)
|
2014-04-14 04:24:00 -07:00
|
|
|
{
|
2014-10-14 18:17:03 -07:00
|
|
|
return nsRefPtr<MediaResource>(new MediaSourceResource(aPrincipal)).forget();
|
2014-04-14 04:24:00 -07:00
|
|
|
}
|
|
|
|
|
2013-09-26 22:22:37 -07:00
|
|
|
void
|
2013-11-17 20:22:47 -08:00
|
|
|
MediaSourceDecoder::AttachMediaSource(dom::MediaSource* aMediaSource)
|
2013-09-26 22:22:37 -07:00
|
|
|
{
|
2014-08-24 21:09:44 -07:00
|
|
|
MOZ_ASSERT(!mMediaSource && !mDecoderStateMachine && NS_IsMainThread());
|
2013-09-26 22:22:37 -07:00
|
|
|
mMediaSource = aMediaSource;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MediaSourceDecoder::DetachMediaSource()
|
|
|
|
{
|
2014-08-24 21:09:44 -07:00
|
|
|
MOZ_ASSERT(mMediaSource && NS_IsMainThread());
|
2013-09-26 22:22:37 -07:00
|
|
|
mMediaSource = nullptr;
|
|
|
|
}
|
|
|
|
|
2014-08-21 19:14:36 -07:00
|
|
|
already_AddRefed<SourceBufferDecoder>
|
2015-01-07 15:58:55 -08:00
|
|
|
MediaSourceDecoder::CreateSubDecoder(const nsACString& aType, int64_t aTimestampOffset)
|
2013-09-26 22:22:37 -07:00
|
|
|
{
|
2014-08-20 01:07:00 -07:00
|
|
|
MOZ_ASSERT(mReader);
|
2015-01-07 15:58:55 -08:00
|
|
|
return mReader->CreateSubDecoder(aType, aTimestampOffset);
|
2014-04-21 06:30:00 -07:00
|
|
|
}
|
|
|
|
|
2014-09-03 18:57:06 -07:00
|
|
|
void
|
|
|
|
MediaSourceDecoder::AddTrackBuffer(TrackBuffer* aTrackBuffer)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mReader);
|
|
|
|
mReader->AddTrackBuffer(aTrackBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MediaSourceDecoder::RemoveTrackBuffer(TrackBuffer* aTrackBuffer)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mReader);
|
|
|
|
mReader->RemoveTrackBuffer(aTrackBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MediaSourceDecoder::OnTrackBufferConfigured(TrackBuffer* aTrackBuffer, const MediaInfo& aInfo)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mReader);
|
|
|
|
mReader->OnTrackBufferConfigured(aTrackBuffer, aInfo);
|
|
|
|
}
|
|
|
|
|
2014-08-26 00:25:09 -07:00
|
|
|
void
|
2015-03-23 03:08:05 -07:00
|
|
|
MediaSourceDecoder::Ended(bool aEnded)
|
2014-08-26 00:25:09 -07:00
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
2015-03-23 03:08:05 -07:00
|
|
|
static_cast<MediaSourceResource*>(GetResource())->SetEnded(aEnded);
|
2015-03-23 03:08:05 -07:00
|
|
|
mReader->Ended(aEnded);
|
2014-08-26 00:25:09 -07:00
|
|
|
mon.NotifyAll();
|
|
|
|
}
|
|
|
|
|
2014-11-11 20:50:20 -08:00
|
|
|
bool
|
|
|
|
MediaSourceDecoder::IsExpectingMoreData()
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
|
|
|
return !mReader->IsEnded();
|
|
|
|
}
|
|
|
|
|
2014-11-11 20:11:33 -08:00
|
|
|
class DurationChangedRunnable : public nsRunnable {
|
|
|
|
public:
|
2015-01-16 04:49:02 -08:00
|
|
|
DurationChangedRunnable(MediaSourceDecoder* aDecoder,
|
|
|
|
double aOldDuration,
|
|
|
|
double aNewDuration)
|
2014-11-11 20:11:33 -08:00
|
|
|
: mDecoder(aDecoder)
|
|
|
|
, mOldDuration(aOldDuration)
|
|
|
|
, mNewDuration(aNewDuration)
|
|
|
|
{ }
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
NS_IMETHOD Run() override final {
|
2014-11-11 20:11:33 -08:00
|
|
|
mDecoder->DurationChanged(mOldDuration, mNewDuration);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
RefPtr<MediaSourceDecoder> mDecoder;
|
|
|
|
double mOldDuration;
|
|
|
|
double mNewDuration;
|
|
|
|
};
|
|
|
|
|
2014-08-24 21:09:44 -07:00
|
|
|
void
|
2014-11-11 20:11:33 -08:00
|
|
|
MediaSourceDecoder::DurationChanged(double aOldDuration, double aNewDuration)
|
2014-08-24 21:09:44 -07:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2014-11-11 20:11:33 -08:00
|
|
|
// Run the MediaSource duration changed algorithm
|
|
|
|
if (mMediaSource) {
|
|
|
|
mMediaSource->DurationChange(aOldDuration, aNewDuration);
|
|
|
|
}
|
|
|
|
// Run the MediaElement duration changed algorithm
|
|
|
|
MediaDecoder::DurationChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-02-04 01:20:15 -08:00
|
|
|
MediaSourceDecoder::SetInitialDuration(int64_t aDuration)
|
2014-11-11 20:11:33 -08:00
|
|
|
{
|
|
|
|
// Only use the decoded duration if one wasn't already
|
|
|
|
// set.
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
|
|
|
if (!mMediaSource || !IsNaN(mMediaSourceDuration)) {
|
2014-08-24 21:09:44 -07:00
|
|
|
return;
|
|
|
|
}
|
2014-11-11 20:11:33 -08:00
|
|
|
double duration = aDuration;
|
2015-01-16 04:49:01 -08:00
|
|
|
// A duration of -1 is +Infinity.
|
|
|
|
if (aDuration >= 0) {
|
|
|
|
duration /= USECS_PER_S;
|
|
|
|
}
|
2015-02-04 01:20:15 -08:00
|
|
|
SetMediaSourceDuration(duration, MSRangeRemovalAction::SKIP);
|
2014-11-11 20:11:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-01-16 04:49:02 -08:00
|
|
|
MediaSourceDecoder::SetMediaSourceDuration(double aDuration, MSRangeRemovalAction aAction)
|
2014-11-11 20:11:33 -08:00
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
|
|
|
double oldDuration = mMediaSourceDuration;
|
2015-01-16 04:49:01 -08:00
|
|
|
if (aDuration >= 0) {
|
2015-02-11 23:52:12 -08:00
|
|
|
int64_t checkedDuration;
|
|
|
|
if (NS_FAILED(SecondsToUsecs(aDuration, checkedDuration))) {
|
|
|
|
// INT64_MAX is used as infinity by the state machine.
|
|
|
|
// We want a very bigger number, but not infinity.
|
|
|
|
checkedDuration = INT64_MAX - 1;
|
|
|
|
}
|
|
|
|
mDecoderStateMachine->SetDuration(checkedDuration);
|
2015-01-16 04:49:01 -08:00
|
|
|
mMediaSourceDuration = aDuration;
|
|
|
|
} else {
|
|
|
|
mDecoderStateMachine->SetDuration(INT64_MAX);
|
|
|
|
mMediaSourceDuration = PositiveInfinity<double>();
|
|
|
|
}
|
2015-01-24 02:46:21 -08:00
|
|
|
if (mReader) {
|
|
|
|
mReader->SetMediaSourceDuration(mMediaSourceDuration);
|
|
|
|
}
|
2015-02-04 01:20:15 -08:00
|
|
|
ScheduleDurationChange(oldDuration, aDuration, aAction);
|
2015-01-16 04:49:02 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MediaSourceDecoder::ScheduleDurationChange(double aOldDuration,
|
|
|
|
double aNewDuration,
|
|
|
|
MSRangeRemovalAction aAction)
|
|
|
|
{
|
2015-01-16 04:49:02 -08:00
|
|
|
if (aAction == MSRangeRemovalAction::SKIP) {
|
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
MediaDecoder::DurationChanged();
|
|
|
|
} else {
|
2015-01-16 04:49:02 -08:00
|
|
|
nsCOMPtr<nsIRunnable> task =
|
|
|
|
NS_NewRunnableMethod(this, &MediaDecoder::DurationChanged);
|
2015-01-16 04:49:02 -08:00
|
|
|
NS_DispatchToMainThread(task);
|
|
|
|
}
|
2014-11-11 20:11:33 -08:00
|
|
|
} else {
|
2015-01-16 04:49:02 -08:00
|
|
|
if (NS_IsMainThread()) {
|
2015-01-16 04:49:02 -08:00
|
|
|
DurationChanged(aOldDuration, aNewDuration);
|
2015-01-16 04:49:02 -08:00
|
|
|
} else {
|
2015-03-17 09:29:17 -07:00
|
|
|
nsCOMPtr<nsIRunnable> task =
|
2015-01-16 04:49:02 -08:00
|
|
|
new DurationChangedRunnable(this, aOldDuration, aNewDuration);
|
2015-01-16 04:49:02 -08:00
|
|
|
NS_DispatchToMainThread(task);
|
|
|
|
}
|
2014-11-11 20:11:33 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
MediaSourceDecoder::GetMediaSourceDuration()
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
|
|
|
return mMediaSourceDuration;
|
2014-08-24 21:09:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-09-07 04:54:00 -07:00
|
|
|
MediaSourceDecoder::NotifyTimeRangesChanged()
|
2014-08-24 21:09:44 -07:00
|
|
|
{
|
2014-11-04 16:32:26 -08:00
|
|
|
MOZ_ASSERT(mReader);
|
|
|
|
mReader->NotifyTimeRangesChanged();
|
2014-08-24 21:09:44 -07:00
|
|
|
}
|
|
|
|
|
2014-09-04 17:04:54 -07:00
|
|
|
void
|
|
|
|
MediaSourceDecoder::PrepareReaderInitialization()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mReader);
|
|
|
|
mReader->PrepareInitialization();
|
|
|
|
}
|
|
|
|
|
2015-01-28 18:35:58 -08:00
|
|
|
void
|
|
|
|
MediaSourceDecoder::GetMozDebugReaderData(nsAString& aString)
|
|
|
|
{
|
|
|
|
mReader->GetMozDebugReaderData(aString);
|
|
|
|
}
|
|
|
|
|
2014-10-13 15:05:00 -07:00
|
|
|
#ifdef MOZ_EME
|
|
|
|
nsresult
|
|
|
|
MediaSourceDecoder::SetCDMProxy(CDMProxy* aProxy)
|
|
|
|
{
|
|
|
|
nsresult rv = MediaDecoder::SetCDMProxy(aProxy);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = mReader->SetCDMProxy(aProxy);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-03-25 23:53:05 -07:00
|
|
|
{
|
|
|
|
// The sub readers can't decrypt EME content until they have a CDMProxy,
|
|
|
|
// and the CDMProxy knows the capabilities of the CDM. The MediaSourceReader
|
|
|
|
// remains in "waiting for resources" state until then. We need to kick the
|
|
|
|
// reader out of waiting if the CDM gets added with known capabilities.
|
|
|
|
CDMCaps::AutoLock caps(aProxy->Capabilites());
|
|
|
|
if (!caps.AreCapsKnown()) {
|
|
|
|
nsCOMPtr<nsIRunnable> task(
|
|
|
|
NS_NewRunnableMethod(this, &MediaDecoder::NotifyWaitingForResourcesStatusChanged));
|
|
|
|
caps.CallOnMainThreadWhenCapsAvailable(task);
|
|
|
|
}
|
|
|
|
}
|
2014-10-13 15:05:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-15 19:14:56 -08:00
|
|
|
bool
|
|
|
|
MediaSourceDecoder::IsActiveReader(MediaDecoderReader* aReader)
|
|
|
|
{
|
|
|
|
return mReader->IsActiveReader(aReader);
|
|
|
|
}
|
|
|
|
|
2015-02-11 23:52:12 -08:00
|
|
|
double
|
|
|
|
MediaSourceDecoder::GetDuration()
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
|
|
|
return mMediaSourceDuration;
|
|
|
|
}
|
|
|
|
|
2015-02-12 21:52:42 -08:00
|
|
|
already_AddRefed<SourceBufferDecoder>
|
|
|
|
MediaSourceDecoder::SelectDecoder(int64_t aTarget,
|
|
|
|
int64_t aTolerance,
|
|
|
|
const nsTArray<nsRefPtr<SourceBufferDecoder>>& aTrackDecoders)
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
|
|
|
|
|
|
|
// Consider decoders in order of newest to oldest, as a newer decoder
|
|
|
|
// providing a given buffered range is expected to replace an older one.
|
|
|
|
for (int32_t i = aTrackDecoders.Length() - 1; i >= 0; --i) {
|
|
|
|
nsRefPtr<SourceBufferDecoder> newDecoder = aTrackDecoders[i];
|
|
|
|
|
|
|
|
nsRefPtr<dom::TimeRanges> ranges = new dom::TimeRanges();
|
|
|
|
newDecoder->GetBuffered(ranges);
|
|
|
|
if (ranges->Find(double(aTarget) / USECS_PER_S,
|
|
|
|
double(aTolerance) / USECS_PER_S) == dom::TimeRanges::NoIndex) {
|
|
|
|
MSE_DEBUGV("SelectDecoder(%lld fuzz:%lld) newDecoder=%p (%d/%d) target not in ranges=%s",
|
|
|
|
aTarget, aTolerance, newDecoder.get(), i+1,
|
|
|
|
aTrackDecoders.Length(), DumpTimeRanges(ranges).get());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newDecoder.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-02-11 23:52:13 -08:00
|
|
|
#undef MSE_DEBUG
|
|
|
|
#undef MSE_DEBUGV
|
|
|
|
|
2013-09-26 22:22:37 -07:00
|
|
|
} // namespace mozilla
|