forked from mpv-android/mpv-android
-
Notifications
You must be signed in to change notification settings - Fork 2
/
MPVLib.java
163 lines (137 loc) · 6.33 KB
/
MPVLib.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package is.xyz.mpv;
// Wrapper for native library
import java.util.ArrayList;
import java.util.List;
import android.content.Context;
import android.graphics.Bitmap;
import android.view.Surface;
import androidx.annotation.NonNull;
@SuppressWarnings("unused")
public class MPVLib {
static {
String[] libs = { "mpv", "player" };
for (String lib: libs) {
System.loadLibrary(lib);
}
}
public static native void create(Context appctx);
public static native void init();
public static native void destroy();
public static native void attachSurface(Surface surface);
public static native void detachSurface();
public static native void command(@NonNull String[] cmd);
public static native int setOptionString(@NonNull String name, @NonNull String value);
public static native Bitmap grabThumbnail(int dimension);
public static native Integer getPropertyInt(@NonNull String property);
public static native void setPropertyInt(@NonNull String property, @NonNull Integer value);
public static native Double getPropertyDouble(@NonNull String property);
public static native void setPropertyDouble(@NonNull String property, @NonNull Double value);
public static native Boolean getPropertyBoolean(@NonNull String property);
public static native void setPropertyBoolean(@NonNull String property, @NonNull Boolean value);
public static native String getPropertyString(@NonNull String property);
public static native void setPropertyString(@NonNull String property, @NonNull String value);
public static native void observeProperty(@NonNull String property, int format);
private static final List<EventObserver> observers = new ArrayList<>();
public static void addObserver(EventObserver o) {
synchronized (observers) {observers.add(o); }
}
public static void removeObserver(EventObserver o) {
synchronized (observers) { observers.remove(o); }
}
public static void eventProperty(String property, long value) {
synchronized (observers) {
for (EventObserver o : observers)
o.eventProperty(property, value);
}
}
public static void eventProperty(String property, boolean value) {
synchronized (observers) {
for (EventObserver o : observers)
o.eventProperty(property, value);
}
}
public static void eventProperty(String property, String value) {
synchronized (observers) {
for (EventObserver o : observers)
o.eventProperty(property, value);
}
}
public static void eventProperty(String property) {
synchronized (observers) {
for (EventObserver o : observers)
o.eventProperty(property);
}
}
public static void event(int eventId) {
synchronized (observers) {
for (EventObserver o : observers)
o.event(eventId);
}
}
private static final List<LogObserver> log_observers = new ArrayList<>();
public static void addLogObserver(LogObserver o) {
synchronized (log_observers) { log_observers.add(o); }
}
public static void removeLogObserver(LogObserver o) {
synchronized (log_observers) { log_observers.remove(o); }
}
public static void logMessage(String prefix, int level, String text) {
synchronized (log_observers) {
for (LogObserver o : log_observers)
o.logMessage(prefix, level, text);
}
}
public interface EventObserver {
void eventProperty(@NonNull String property);
void eventProperty(@NonNull String property, long value);
void eventProperty(@NonNull String property, boolean value);
void eventProperty(@NonNull String property, @NonNull String value);
void event(int eventId);
}
public interface LogObserver {
void logMessage(@NonNull String prefix, int level, @NonNull String text);
}
public static class mpvFormat {
public static final int MPV_FORMAT_NONE=0;
public static final int MPV_FORMAT_STRING=1;
public static final int MPV_FORMAT_OSD_STRING=2;
public static final int MPV_FORMAT_FLAG=3;
public static final int MPV_FORMAT_INT64=4;
public static final int MPV_FORMAT_DOUBLE=5;
public static final int MPV_FORMAT_NODE=6;
public static final int MPV_FORMAT_NODE_ARRAY=7;
public static final int MPV_FORMAT_NODE_MAP=8;
public static final int MPV_FORMAT_BYTE_ARRAY=9;
}
public static class mpvEventId {
public static final int MPV_EVENT_NONE=0;
public static final int MPV_EVENT_SHUTDOWN=1;
public static final int MPV_EVENT_LOG_MESSAGE=2;
public static final int MPV_EVENT_GET_PROPERTY_REPLY=3;
public static final int MPV_EVENT_SET_PROPERTY_REPLY=4;
public static final int MPV_EVENT_COMMAND_REPLY=5;
public static final int MPV_EVENT_START_FILE=6;
public static final int MPV_EVENT_END_FILE=7;
public static final int MPV_EVENT_FILE_LOADED=8;
public static final @Deprecated int MPV_EVENT_IDLE=11;
public static final @Deprecated int MPV_EVENT_TICK=14;
public static final int MPV_EVENT_CLIENT_MESSAGE=16;
public static final int MPV_EVENT_VIDEO_RECONFIG=17;
public static final int MPV_EVENT_AUDIO_RECONFIG=18;
public static final int MPV_EVENT_SEEK=20;
public static final int MPV_EVENT_PLAYBACK_RESTART=21;
public static final int MPV_EVENT_PROPERTY_CHANGE=22;
public static final int MPV_EVENT_QUEUE_OVERFLOW=24;
public static final int MPV_EVENT_HOOK=25;
}
public static class mpvLogLevel {
public static final int MPV_LOG_LEVEL_NONE=0;
public static final int MPV_LOG_LEVEL_FATAL=10;
public static final int MPV_LOG_LEVEL_ERROR=20;
public static final int MPV_LOG_LEVEL_WARN=30;
public static final int MPV_LOG_LEVEL_INFO=40;
public static final int MPV_LOG_LEVEL_V=50;
public static final int MPV_LOG_LEVEL_DEBUG=60;
public static final int MPV_LOG_LEVEL_TRACE=70;
}
}