IVideoPlayer.java 324 B

12345678910111213141516171819
  1. package ai.nreal.videoplayer;
  2. import android.content.Context;
  3. import android.view.Surface;
  4. public interface IVideoPlayer {
  5. void init(Context var1, IVideoPlayerEventProxy var2);
  6. void setSurface(Surface var1);
  7. void load(String path, boolean isDrm);
  8. void play();
  9. void pause();
  10. void release();
  11. }