mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 11:33:06 +00:00
18 lines
387 B
Java
18 lines
387 B
Java
package com.limelight.nvstream.av.video;
|
|
|
|
import com.limelight.nvstream.av.DecodeUnit;
|
|
|
|
public interface VideoDecoderRenderer {
|
|
public static int FLAG_PREFER_QUALITY = 0x1;
|
|
|
|
public void setup(int width, int height, Object renderTarget, int drFlags);
|
|
|
|
public void start();
|
|
|
|
public void stop();
|
|
|
|
public void release();
|
|
|
|
public boolean submitDecodeUnit(DecodeUnit decodeUnit);
|
|
}
|