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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
use mpv_gen::{mpv_command, mpv_command_async, mpv_wait_event, mpv_create, mpv_initialize,
mpv_terminate_destroy, mpv_handle, mpv_set_option,
mpv_set_property, mpv_set_property_async, mpv_get_property,
mpv_get_property_async, mpv_opengl_cb_get_proc_address_fn, mpv_get_sub_api,
mpv_opengl_cb_uninit_gl, mpv_opengl_cb_init_gl, mpv_opengl_cb_draw,
mpv_opengl_cb_context, mpv_observe_property, mpv_unobserve_property,
mpv_opengl_cb_set_update_callback, mpv_get_time_us};
use mpv_enums::*;
use mpv_error::*;
use std::os::raw::c_void;
use std::{ffi, ptr};
use std::sync::atomic::{AtomicBool, Ordering};
use std::boxed::Box;
use std::ops::{Deref,DerefMut};
pub struct MpvHandler {
handle: *mut mpv_handle,
}
pub struct MpvHandlerWithGl {
mpv_handler: MpvHandler,
gl_context: *mut mpv_opengl_cb_context,
update_available:AtomicBool
}
pub struct MpvHandlerBuilder {
handle: *mut mpv_handle,
}
impl MpvHandlerBuilder {
#[must_use]
pub fn new() -> Result<Self> {
let handle = unsafe { mpv_create() };
if handle == ptr::null_mut() {
return Err(Error::MPV_ERROR_NOMEM);
}
ret_to_result(0,MpvHandlerBuilder { handle: handle })
}
#[cfg_attr(feature = "clippy", allow(temporary_cstring_as_ptr))]
pub fn set_option<T : MpvFormat>(&mut self, property: &str, option: T) -> Result<()> {
let mut ret = 0 ;
let format = T::get_mpv_format();
option.call_as_c_void(|ptr:*mut c_void|{
ret = unsafe {
mpv_set_option(self.handle,
ffi::CString::new(property).unwrap().as_ptr(),
format,
ptr)
}
});
ret_to_result(ret,())
}
pub fn try_hardware_decoding(&mut self) -> Result<()> {
self.set_option("hwdec","auto")
}
#[must_use]
pub fn build(self) -> Result<MpvHandler> {
let ret = unsafe { mpv_initialize(self.handle) };
ret_to_result(ret,MpvHandler {
handle: self.handle,
})
}
#[must_use]
pub fn build_with_gl(mut self,
get_proc_address: mpv_opengl_cb_get_proc_address_fn,
get_proc_address_ctx: *mut ::std::os::raw::c_void) -> Result<Box<MpvHandlerWithGl>> {
self.set_option("vo", "opengl-cb").expect("Error setting vo option to opengl-cb");
let mpv_handler_result = self.build();
match mpv_handler_result {
Ok(mpv_handler) => {
let opengl_ctx = unsafe {
mpv_get_sub_api(mpv_handler.handle,
SubApi::MPV_SUB_API_OPENGL_CB)
} as *mut mpv_opengl_cb_context ;
let ret = unsafe {
mpv_opengl_cb_init_gl(opengl_ctx, ptr::null(), get_proc_address, get_proc_address_ctx)
};
let mut mpv_handler_with_gl = Box::new(MpvHandlerWithGl {
mpv_handler: mpv_handler,
gl_context: opengl_ctx,
update_available: AtomicBool::new(false)
});
unsafe {mpv_opengl_cb_set_update_callback(opengl_ctx,
Some(MpvHandlerWithGl::update_draw),
mpv_handler_with_gl.as_mut() as *mut MpvHandlerWithGl as *mut c_void)};
ret_to_result(ret,mpv_handler_with_gl)
},
Err(e) => {
Err(e)
}
}
}
}
impl Deref for MpvHandlerWithGl {
type Target = MpvHandler;
fn deref(&self) -> &MpvHandler {
&self.mpv_handler
}
}
impl DerefMut for MpvHandlerWithGl {
fn deref_mut(&mut self) -> &mut MpvHandler {
&mut self.mpv_handler
}
}
impl MpvHandlerWithGl {
pub fn draw(&mut self, fbo: i32, width: i32, heigth: i32) -> Result<()> {
self.update_available.store(false,Ordering::Relaxed) ;
let ret = unsafe { mpv_opengl_cb_draw(self.gl_context, fbo, width, heigth) };
ret_to_result(ret, ())
}
unsafe extern "C" fn update_draw(cb_ctx: *mut ::std::os::raw::c_void) {
let ptr = cb_ctx as *mut MpvHandlerWithGl ;
assert!(!ptr.is_null());
let mpv = &mut (*ptr) ;
mpv.update_available.store(true, Ordering::Relaxed);
}
pub fn is_update_available(&self) -> bool {
self.update_available.load(Ordering::Relaxed)
}
}
impl MpvHandler {
#[cfg_attr(feature = "clippy", allow(temporary_cstring_as_ptr))]
pub fn set_property<T : MpvFormat>(&mut self, property: &str, value : T) -> Result<()>{
let mut ret = 0 ;
let format = T::get_mpv_format();
value.call_as_c_void(|ptr:*mut c_void|{
ret = unsafe {
mpv_set_property(self.handle,
ffi::CString::new(property).unwrap().as_ptr(),
format,
ptr)
}
});
ret_to_result(ret,())
}
#[cfg_attr(feature = "clippy", allow(temporary_cstring_as_ptr))]
pub fn set_property_async<T : MpvFormat>(&mut self, property: &str, value : T, userdata:u32) -> Result<()>{
let userdata = userdata as ::std::os::raw::c_ulong;
let mut ret = 0 ;
let format = T::get_mpv_format();
value.call_as_c_void(|ptr:*mut c_void|{
ret = unsafe {
mpv_set_property_async(self.handle,
userdata,
ffi::CString::new(property).unwrap().as_ptr(),
format,
ptr)
}
});
ret_to_result(ret,())
}
#[cfg_attr(feature = "clippy", allow(temporary_cstring_as_ptr))]
pub fn get_property<T : MpvFormat>(&self, property: &str) -> Result<T> {
let mut ret = 0 ;
let format = T::get_mpv_format();
let result = T::get_from_c_void(|ptr:*mut c_void|{
ret = unsafe {
mpv_get_property(self.handle,
ffi::CString::new(property).unwrap().as_ptr(),
format,
ptr)
}
});
ret_to_result(ret,result)
}
#[cfg_attr(feature = "clippy", allow(temporary_cstring_as_ptr))]
pub fn get_property_async<T : MpvFormat>(&self, property: &str, userdata :u32) -> Result<()> {
let userdata = userdata as ::std::os::raw::c_ulong;
let ret = unsafe {
mpv_get_property_async(self.handle,
userdata,
ffi::CString::new(property).unwrap().as_ptr(),
T::get_mpv_format())
};
ret_to_result(ret,())
}
#[cfg_attr(feature = "clippy", allow(temporary_cstring_as_ptr))]
pub fn set_option<T : MpvFormat>(&mut self, property: &str, option: T) -> Result<()> {
let mut ret = 0 ;
let format = T::get_mpv_format();
option.call_as_c_void(|ptr:*mut c_void|{
ret = unsafe {
mpv_set_option(self.handle,
ffi::CString::new(property).unwrap().as_ptr(),
format,
ptr)
}
});
ret_to_result(ret,())
}
pub fn command(&mut self, command: &[&str]) -> Result<()> {
let command_cstring: Vec<_> = command.iter()
.map(|item| ffi::CString::new(*item).unwrap())
.collect();
let mut command_pointers: Vec<_> = command_cstring.iter()
.map(|item| item.as_ptr())
.collect();
command_pointers.push(ptr::null());
let ret = unsafe { mpv_command(self.handle, command_pointers.as_mut_ptr()) };
ret_to_result(ret, ())
}
pub fn command_async(&mut self, command: &[&str], userdata :u32) -> Result<()> {
let userdata = userdata as ::std::os::raw::c_ulong;
let command_cstring: Vec<_> = command.iter()
.map(|item| ffi::CString::new(*item).unwrap())
.collect();
let mut command_pointers: Vec<_> = command_cstring.iter()
.map(|item| item.as_ptr())
.collect();
command_pointers.push(ptr::null());
let ret = unsafe { mpv_command_async(self.handle, userdata,command_pointers.as_mut_ptr())};
ret_to_result(ret, ())
}
pub fn wait_event<'a>(&mut self,timeout:f64) -> Option<Event<'a>> {
let event = unsafe {
let ptr = mpv_wait_event(self.handle, timeout);
if ptr.is_null() {
panic!("Unexpected null ptr from mpv_wait_event");
}
*ptr
};
to_event(event.event_id,
event.error,
event.reply_userdata,
event.data)
}
#[cfg_attr(feature = "clippy", allow(temporary_cstring_as_ptr))]
pub fn observe_property<T:MpvFormat>(&mut self,name:&str,userdata:u32) -> Result<()>{
let userdata = userdata as ::std::os::raw::c_ulong;
let ret = unsafe {
mpv_observe_property(self.handle,
userdata,
ffi::CString::new(name).unwrap().as_ptr(),
T::get_mpv_format())
};
ret_to_result(ret,())
}
pub fn unobserve_property(&mut self,userdata:u32) -> Result<()> {
let userdata = userdata as ::std::os::raw::c_ulong;
let ret = unsafe {
mpv_unobserve_property(self.handle,
userdata)
};
ret_to_result(ret,())
}
pub fn raw(&self) -> *mut mpv_handle {
self.handle
}
pub fn get_time_us(&self) -> i64 {
unsafe {
mpv_get_time_us(self.handle)
}
}
}
impl Drop for MpvHandlerWithGl {
fn drop(&mut self) {
unsafe {
mpv_opengl_cb_uninit_gl(self.gl_context);
}
}
}
impl Drop for MpvHandler {
fn drop(&mut self) {
unsafe {
mpv_terminate_destroy(self.handle);
}
}
}