Add functions for decoders to return latency statistics

This commit is contained in:
Cameron Gutman 2014-06-30 21:10:27 -07:00
parent 1c82fdf048
commit a4dceb0b74

View File

@ -7,6 +7,10 @@ public interface VideoDecoderRenderer {
public int getCapabilities(); public int getCapabilities();
public int getAverageEndToEndLatency();
public int getAverageDecoderLatency();
public boolean setup(int width, int height, int redrawRate, Object renderTarget, int drFlags); public boolean setup(int width, int height, int redrawRate, Object renderTarget, int drFlags);
public boolean start(VideoDepacketizer depacketizer); public boolean start(VideoDepacketizer depacketizer);