Add method for getting video decoder name

This commit is contained in:
Cameron Gutman
2014-11-21 11:08:35 -08:00
parent 80c17b4913
commit 8eca3683c9
4 changed files with 33 additions and 6 deletions
@@ -0,0 +1,7 @@
package com.limelight.binding.video;
import com.limelight.nvstream.av.video.VideoDecoderRenderer;
public abstract class EnhancedDecoderRenderer implements VideoDecoderRenderer {
public abstract String getDecoderName();
}