mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13e5c08e6c
Extensions specification. r=roc
116 lines
2.9 KiB
C++
116 lines
2.9 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_SourceBuffer_h_
|
|
#define mozilla_dom_SourceBuffer_h_
|
|
|
|
#include "AsyncEventRunner.h"
|
|
#include "MediaSource.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/dom/SourceBufferBinding.h"
|
|
#include "mozilla/dom/TimeRanges.h"
|
|
#include "mozilla/dom/TypedArray.h"
|
|
#include "mozilla/ErrorResult.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nscore.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsDOMEventTargetHelper.h"
|
|
#include "nsWrapperCache.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class SourceBuffer MOZ_FINAL : public nsDOMEventTargetHelper
|
|
{
|
|
public:
|
|
/** WebIDL Methods. */
|
|
SourceBufferAppendMode Mode() const
|
|
{
|
|
return mAppendMode;
|
|
}
|
|
|
|
void SetMode(SourceBufferAppendMode aMode, ErrorResult& aRv);
|
|
|
|
bool Updating() const
|
|
{
|
|
return mUpdating;
|
|
}
|
|
|
|
already_AddRefed<TimeRanges> GetBuffered(ErrorResult& aRv);
|
|
|
|
double TimestampOffset() const
|
|
{
|
|
return mTimestampOffset;
|
|
}
|
|
|
|
void SetTimestampOffset(double aTimestampOffset, ErrorResult& aRv);
|
|
|
|
double AppendWindowStart() const
|
|
{
|
|
return mAppendWindowStart;
|
|
}
|
|
|
|
void SetAppendWindowStart(double aAppendWindowStart, ErrorResult& aRv);
|
|
|
|
double AppendWindowEnd() const
|
|
{
|
|
return mAppendWindowEnd;
|
|
}
|
|
|
|
void SetAppendWindowEnd(double aAppendWindowEnd, ErrorResult& aRv);
|
|
|
|
void AppendBuffer(ArrayBuffer& aData, ErrorResult& aRv);
|
|
void AppendBuffer(ArrayBufferView& aData, ErrorResult& aRv);
|
|
|
|
void Abort(ErrorResult& aRv);
|
|
|
|
void Remove(double aStart, double aEnd, ErrorResult& aRv);
|
|
/** End WebIDL Methods. */
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(SourceBuffer, nsDOMEventTargetHelper)
|
|
|
|
explicit SourceBuffer(MediaSource* aMediaSource);
|
|
|
|
MediaSource* GetParentObject() const;
|
|
|
|
JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
// Notify the SourceBuffer that it has been attached to or detached from
|
|
// the MediaSource's sourceBuffer list.
|
|
void Attach();
|
|
void Detach();
|
|
|
|
private:
|
|
friend class AsyncEventRunnner<SourceBuffer>;
|
|
void DispatchSimpleEvent(const char* aName);
|
|
void QueueAsyncSimpleEvent(const char* aName);
|
|
|
|
// Update mUpdating and fire the appropriate events.
|
|
void StartUpdating();
|
|
void StopUpdating();
|
|
void AbortUpdating();
|
|
|
|
// Shared implementation of AppendBuffer overloads.
|
|
void AppendData(const uint8_t* aData, uint32_t aLength, ErrorResult& aRv);
|
|
|
|
nsRefPtr<MediaSource> mMediaSource;
|
|
|
|
double mAppendWindowStart;
|
|
double mAppendWindowEnd;
|
|
|
|
double mTimestampOffset;
|
|
|
|
SourceBufferAppendMode mAppendMode;
|
|
bool mUpdating;
|
|
|
|
bool mAttached;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
#endif /* mozilla_dom_SourceBuffer_h_ */
|