mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
/* -*- 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsIThread.idl"
|
|
#include "nsIPrincipal.idl"
|
|
|
|
%{C++
|
|
#include "nsTArray.h"
|
|
#include "nsStringGlue.h"
|
|
class GMPVideoDecoderProxy;
|
|
class GMPVideoEncoderProxy;
|
|
class GMPVideoHost;
|
|
%}
|
|
|
|
[ptr] native GMPVideoDecoderProxy(GMPVideoDecoderProxy);
|
|
[ptr] native GMPVideoEncoderProxy(GMPVideoEncoderProxy);
|
|
[ptr] native GMPVideoHost(GMPVideoHost);
|
|
[ptr] native MessageLoop(MessageLoop);
|
|
[ptr] native TagArray(nsTArray<nsCString>);
|
|
|
|
[scriptable, uuid(a9b826da-725a-4b81-814f-b715445188f2)]
|
|
interface mozIGeckoMediaPluginService : nsISupports
|
|
{
|
|
/**
|
|
* The GMP thread. Callable from any thread.
|
|
*/
|
|
readonly attribute nsIThread thread;
|
|
|
|
/**
|
|
* Get a plugin that supports the specified tags.
|
|
* Callable on any thread
|
|
*/
|
|
[noscript]
|
|
boolean hasPluginForAPI([optional] in AString origin,
|
|
in ACString api,
|
|
in TagArray tags);
|
|
|
|
/**
|
|
* Get a video decoder that supports the specified tags.
|
|
* The array of tags should at least contain a codec tag, and optionally
|
|
* other tags such as for EME keysystem.
|
|
* Callable only on GMP thread.
|
|
*/
|
|
[noscript]
|
|
GMPVideoDecoderProxy getGMPVideoDecoder(in TagArray tags,
|
|
[optional] in AString origin,
|
|
out GMPVideoHost outVideoHost);
|
|
|
|
/**
|
|
* Get a video encoder that supports the specified tags.
|
|
* The array of tags should at least contain a codec tag, and optionally
|
|
* other tags.
|
|
* Callable only on GMP thread.
|
|
*/
|
|
[noscript]
|
|
GMPVideoEncoderProxy getGMPVideoEncoder(in TagArray tags,
|
|
[optional] in AString origin,
|
|
out GMPVideoHost outVideoHost);
|
|
|
|
/**
|
|
* Add a directory to scan for gecko media plugins.
|
|
* @note Main-thread API.
|
|
*/
|
|
void addPluginDirectory(in AString directory);
|
|
|
|
/**
|
|
* Remove a directory for gecko media plugins.
|
|
* @note Main-thread API.
|
|
*/
|
|
void removePluginDirectory(in AString directory);
|
|
};
|