Android: Remove non-functional native video OS methods

Those methods are only properly implemented for iOS.

Supersedes #43811.
This commit is contained in:
Rémi Verschelde 2021-05-07 16:42:17 +02:00
parent a0a22ef49f
commit e96f0ea1d7
No known key found for this signature in database
GPG key ID: C3336907360768E1
7 changed files with 13 additions and 113 deletions

View file

@ -57,10 +57,6 @@ private:
jmethodID _set_screen_orientation = 0;
jmethodID _get_screen_orientation = 0;
jmethodID _get_system_dir = 0;
jmethodID _play_video = 0;
jmethodID _is_video_playing = 0;
jmethodID _pause_video = 0;
jmethodID _stop_video = 0;
public:
GodotIOJavaWrapper(JNIEnv *p_env, jobject p_godot_io_instance);
@ -83,10 +79,6 @@ public:
void set_screen_orientation(int p_orient);
int get_screen_orientation() const;
String get_system_dir(int p_dir);
void play_video(const String &p_path);
bool is_video_playing();
void pause_video();
void stop_video();
};
#endif /* !JAVA_GODOT_IO_WRAPPER_H */