-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:update AliVCSDK to version v6.6.0
- Loading branch information
善师
committed
Nov 3, 2023
1 parent
64ac9fb
commit 1de7f02
Showing
23 changed files
with
167 additions
and
175 deletions.
There are no files selected for viewing
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
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
File renamed without changes
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
26 changes: 26 additions & 0 deletions
26
...VideoEpisode/src/main/java/com/alivc/auiplayer/videoepisode/data/AUIEpisodeDataEvent.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,26 @@ | ||
package com.alivc.auiplayer.videoepisode.data; | ||
|
||
import androidx.annotation.Keep; | ||
import androidx.annotation.NonNull; | ||
|
||
@Keep | ||
public class AUIEpisodeDataEvent { | ||
public int preIndex; | ||
public int curIndex; | ||
public AUIEpisodeVideoInfo episodeVideoInfo; | ||
|
||
public AUIEpisodeDataEvent(int preIndex, int curIndex, @NonNull AUIEpisodeVideoInfo episodeVideoInfo) { | ||
this.preIndex = preIndex; | ||
this.curIndex = curIndex; | ||
this.episodeVideoInfo = episodeVideoInfo; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "AUIEpisodeDataEvent{" + | ||
"preIndex=" + preIndex + | ||
", curIndex=" + curIndex + | ||
", episodeVideoInfo=" + episodeVideoInfo + | ||
'}'; | ||
} | ||
} |
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
Oops, something went wrong.