2017-06-02 14:46:12 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package org.webrtc;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface for a video decoder that can be used in WebRTC. All calls to the class will be made on
|
|
|
|
|
* a single decoding thread.
|
|
|
|
|
*/
|
|
|
|
|
public interface VideoDecoder {
|
|
|
|
|
/** Settings passed to the decoder by WebRTC. */
|
|
|
|
|
public class Settings {
|
|
|
|
|
public final int numberOfCores;
|
2017-06-20 10:02:36 -07:00
|
|
|
public final int width;
|
|
|
|
|
public final int height;
|
2017-06-02 14:46:12 +02:00
|
|
|
|
2017-06-20 10:02:36 -07:00
|
|
|
public Settings(int numberOfCores, int width, int height) {
|
2017-06-02 14:46:12 +02:00
|
|
|
this.numberOfCores = numberOfCores;
|
2017-06-20 10:02:36 -07:00
|
|
|
this.width = width;
|
|
|
|
|
this.height = height;
|
2017-06-02 14:46:12 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Additional info for decoding. */
|
|
|
|
|
public class DecodeInfo {
|
|
|
|
|
public final boolean isMissingFrames;
|
|
|
|
|
public final long renderTimeMs;
|
|
|
|
|
|
|
|
|
|
public DecodeInfo(boolean isMissingFrames, long renderTimeMs) {
|
|
|
|
|
this.isMissingFrames = isMissingFrames;
|
|
|
|
|
this.renderTimeMs = renderTimeMs;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface Callback {
|
|
|
|
|
/**
|
|
|
|
|
* Call to return a decoded frame. Can be called on any thread.
|
|
|
|
|
*
|
|
|
|
|
* @param frame Decoded frame
|
|
|
|
|
* @param decodeTimeMs Time it took to decode the frame in milliseconds or null if not available
|
|
|
|
|
* @param qp QP value of the decoded frame or null if not available
|
|
|
|
|
*/
|
|
|
|
|
void onDecodedFrame(VideoFrame frame, Integer decodeTimeMs, Integer qp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Initializes the decoding process with specified settings. Will be called on the decoding thread
|
|
|
|
|
* before any decode calls.
|
|
|
|
|
*/
|
2017-11-20 22:33:40 +01:00
|
|
|
@CalledByNative VideoCodecStatus initDecode(Settings settings, Callback decodeCallback);
|
2017-06-02 14:46:12 +02:00
|
|
|
/**
|
|
|
|
|
* Called when the decoder is no longer needed. Any more calls to decode will not be made.
|
|
|
|
|
*/
|
2017-11-20 22:33:40 +01:00
|
|
|
@CalledByNative VideoCodecStatus release();
|
2017-06-02 14:46:12 +02:00
|
|
|
/**
|
|
|
|
|
* Request the decoder to decode a frame.
|
|
|
|
|
*/
|
2017-11-20 22:33:40 +01:00
|
|
|
@CalledByNative VideoCodecStatus decode(EncodedImage frame, DecodeInfo info);
|
2017-06-02 14:46:12 +02:00
|
|
|
/**
|
|
|
|
|
* The decoder should return true if it prefers late decoding. That is, it can not decode
|
|
|
|
|
* infinite number of frames before the decoded frame is consumed.
|
|
|
|
|
*/
|
2017-11-20 22:33:40 +01:00
|
|
|
@CalledByNative boolean getPrefersLateDecoding();
|
2017-10-19 11:34:08 +02:00
|
|
|
/**
|
|
|
|
|
* Should return a descriptive name for the implementation. Gets called once and cached. May be
|
|
|
|
|
* called from arbitrary thread.
|
|
|
|
|
*/
|
2017-11-20 22:33:40 +01:00
|
|
|
@CalledByNative String getImplementationName();
|
2017-06-02 14:46:12 +02:00
|
|
|
}
|