forked from autoandshare/HeadVR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba6f122
commit f3a09ec
Showing
8 changed files
with
147 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/autoandshare/headvr/lib/browse/HeadVRChannel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package autoandshare.headvr.lib.browse; | ||
|
||
import android.app.Activity; | ||
|
||
import org.videolan.medialibrary.interfaces.media.MediaWrapper; | ||
|
||
public class HeadVRChannel implements IPlayList { | ||
@Override | ||
public void setActivity(Activity activity) { | ||
|
||
} | ||
|
||
public String getIndexString() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public MediaWrapper getMediaAtOffset(int offset) { | ||
return null; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/autoandshare/headvr/lib/browse/IPlayList.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package autoandshare.headvr.lib.browse; | ||
|
||
import android.app.Activity; | ||
|
||
import org.videolan.medialibrary.interfaces.media.MediaWrapper; | ||
|
||
public interface IPlayList { | ||
public void setActivity(Activity activity); | ||
public String getIndexString(); | ||
public MediaWrapper getMediaAtOffset(int offset); | ||
} |
Oops, something went wrong.