mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
This commit is contained in:
parent
85045bf6be
commit
c9b411d6cd
3891 changed files with 0 additions and 428084 deletions
|
|
@ -1,7 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
parcelable FormatParam;
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
// Non-default types used in interface.
|
||||
import android.os.Bundle;
|
||||
import android.view.Surface;
|
||||
import org.mozilla.gecko.media.FormatParam;
|
||||
import org.mozilla.gecko.media.ICodecCallbacks;
|
||||
import org.mozilla.gecko.media.Sample;
|
||||
|
||||
interface ICodec {
|
||||
void setCallbacks(in ICodecCallbacks callbacks);
|
||||
boolean configure(in FormatParam format, inout Surface surface, int flags);
|
||||
oneway void start();
|
||||
oneway void stop();
|
||||
oneway void flush();
|
||||
oneway void release();
|
||||
|
||||
Sample dequeueInput(int size);
|
||||
oneway void queueInput(in Sample sample);
|
||||
|
||||
oneway void releaseOutput(in Sample sample);
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
// Non-default types used in interface.
|
||||
import org.mozilla.gecko.media.FormatParam;
|
||||
import org.mozilla.gecko.media.Sample;
|
||||
|
||||
interface ICodecCallbacks {
|
||||
oneway void onInputExhausted();
|
||||
oneway void onOutputFormatChanged(in FormatParam format);
|
||||
oneway void onOutput(in Sample sample);
|
||||
oneway void onError(boolean fatal);
|
||||
}
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
// Non-default types used in interface.
|
||||
import org.mozilla.gecko.media.IMediaDrmBridgeCallbacks;
|
||||
|
||||
interface IMediaDrmBridge {
|
||||
void setCallbacks(in IMediaDrmBridgeCallbacks callbacks);
|
||||
|
||||
oneway void createSession(int createSessionToken,
|
||||
int promiseId,
|
||||
String initDataType,
|
||||
in byte[] initData);
|
||||
|
||||
oneway void updateSession(int promiseId,
|
||||
String sessionId,
|
||||
in byte[] response);
|
||||
|
||||
oneway void closeSession(int promiseId, String sessionId);
|
||||
|
||||
oneway void release();
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
// Non-default types used in interface.
|
||||
import org.mozilla.gecko.media.SessionKeyInfo;
|
||||
|
||||
interface IMediaDrmBridgeCallbacks {
|
||||
|
||||
oneway void onSessionCreated(int createSessionToken,
|
||||
int promiseId,
|
||||
in byte[] sessionId,
|
||||
in byte[] request);
|
||||
|
||||
oneway void onSessionUpdated(int promiseId, in byte[] sessionId);
|
||||
|
||||
oneway void onSessionClosed(int promiseId, in byte[] sessionId);
|
||||
|
||||
oneway void onSessionMessage(in byte[] sessionId,
|
||||
int sessionMessageType,
|
||||
in byte[] request);
|
||||
|
||||
oneway void onSessionError(in byte[] sessionId, String message);
|
||||
|
||||
oneway void onSessionBatchedKeyChanged(in byte[] sessionId,
|
||||
in SessionKeyInfo[] keyInfos);
|
||||
|
||||
oneway void onRejectPromise(int promiseId, String message);
|
||||
}
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
// Non-default types used in interface.
|
||||
import org.mozilla.gecko.media.ICodec;
|
||||
import org.mozilla.gecko.media.IMediaDrmBridge;
|
||||
|
||||
interface IMediaManager {
|
||||
/** Creates a remote ICodec object. */
|
||||
ICodec createCodec();
|
||||
|
||||
/** Creates a remote IMediaDrmBridge object. */
|
||||
IMediaDrmBridge createRemoteMediaDrmBridge(in String keySystem,
|
||||
in String stubId);
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
parcelable Sample;
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
/* 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/. */
|
||||
|
||||
package org.mozilla.gecko.media;
|
||||
|
||||
parcelable SessionKeyInfo;
|
||||
Loading…
Add table
Add a link
Reference in a new issue