Exemple #1
0
 public void stopVideo()
 {
     if (!isInitialized)
     {
         Debug.Log(LOG_TAG + " not initialized.");
         return;
     }
     decoder.stopDecoding();
 }
Exemple #2
0
        public void nextVideo()
        {
            if (!isInitialized)
            {
                Debug.Log(LOG_TAG + " not initialized.");
                return;
            }

            decoder.stopDecoding();
            fileSeeker.toNext();

            onChangeVideo.Invoke();
        }