fix: remove int argument from buffer functions (#71)

This commit is contained in:
TheJeterLP 2022-07-08 23:06:37 +02:00 committed by GitHub
parent e2a1bb7ce8
commit 7de199421c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,21 +4,15 @@ import app.revanced.integrations.settings.SettingsEnum;
public class VideoBufferPatch {
//ToDo: Write Patch for it.
//See https://drive.google.com/file/d/1LSZZX4NgBIlN0dDCzyI7cECtgbXVg_1j/view?usp=sharing for where it needs to be used.
public static int getMaxBuffer(int original) {
public static int getMaxBuffer() {
return SettingsEnum.MAX_BUFFER_INTEGER.getInt();
}
//ToDo: Write Patch for it.
//See https://drive.google.com/file/d/1gIUqPIMq-XP-edT_9wQN1RbmVnk9tJN8/view?usp=sharing for where it needs to be used.
public static int getPlaybackBuffer(int original) {
public static int getPlaybackBuffer() {
return SettingsEnum.PLAYBACK_MAX_BUFFER_INTEGER.getInt();
}
//ToDo: Write Patch for it.
//See https://drive.google.com/file/d/1ywL7SxvWrBIIbuZ1YoUIKdZM-U8H_w-p/view?usp=sharing for where it needs to be used.
public static int getReBuffer(int original) {
public static int getReBuffer() {
return SettingsEnum.MAX_PLAYBACK_BUFFER_AFTER_REBUFFER_INTEGER.getInt();
}