expo-libmpv 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -107,14 +107,14 @@ class LibmpvWrapper(private val applicationContext: Context) {
107
107
  MPVLib.removeObservers()
108
108
  MPVLib.addObserver(observer)
109
109
 
110
- MPVLib.observeProperty("demuxer-cache-time", MPV_FORMAT_DOUBLE)
111
- MPVLib.observeProperty("duration", MPV_FORMAT_DOUBLE)
112
- MPVLib.observeProperty("eof-reached", MPV_FORMAT_FLAG)
113
- MPVLib.observeProperty("paused-for-cache", MPV_FORMAT_FLAG)
114
- MPVLib.observeProperty("seekable", MPV_FORMAT_FLAG)
115
- MPVLib.observeProperty("speed", MPV_FORMAT_DOUBLE)
116
- MPVLib.observeProperty("time-pos", MPV_FORMAT_DOUBLE)
117
- MPVLib.observeProperty("track-list", MPV_FORMAT_STRING)
110
+ MPVLib.observeProperty("demuxer-cache-time", MPVLib.MpvFormat.MPV_FORMAT_DOUBLE)
111
+ MPVLib.observeProperty("duration", MPVLib.MpvFormat.MPV_FORMAT_DOUBLE)
112
+ MPVLib.observeProperty("eof-reached", MPVLib.MpvFormat.MPV_FORMAT_FLAG)
113
+ MPVLib.observeProperty("paused-for-cache", MPVLib.MpvFormat.MPV_FORMAT_FLAG)
114
+ MPVLib.observeProperty("seekable", MPVLib.MpvFormat.MPV_FORMAT_FLAG)
115
+ MPVLib.observeProperty("speed", MPVLib.MpvFormat.MPV_FORMAT_DOUBLE)
116
+ MPVLib.observeProperty("time-pos", MPVLib.MpvFormat.MPV_FORMAT_DOUBLE)
117
+ MPVLib.observeProperty("track-list", MPVLib.MpvFormat.MPV_FORMAT_STRING)
118
118
 
119
119
  } catch (e: Exception) {
120
120
  logException(e)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-libmpv",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "A libmpv Fabric component for Android",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",