]> git.sesse.net Git - vlc/blob - bindings/java/core/src/main/java/org/videolan/jvlc/internal/LibVlc.java
037b82664f35e7856ac327ba234558f7614eca5e
[vlc] / bindings / java / core / src / main / java / org / videolan / jvlc / internal / LibVlc.java
1 /*****************************************************************************
2  * LibVlc.java: VLC Java Bindings JNA Glue
3  *****************************************************************************
4  * Copyright (C) 1998-2008 the VideoLAN team
5  *
6  * Authors: Filippo Carone <filippo@carone.org>
7  *
8  *
9  * $Id $
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 package org.videolan.jvlc.internal;
27
28 import com.sun.jna.Callback;
29 import com.sun.jna.Library;
30 import com.sun.jna.Native;
31 import com.sun.jna.NativeLong;
32 import com.sun.jna.Pointer;
33 import com.sun.jna.PointerType;
34 import com.sun.jna.Structure;
35 import com.sun.jna.Union;
36
37
38 public interface LibVlc extends Library
39 {
40
41     LibVlc INSTANCE = (LibVlc) Native.loadLibrary("vlc", LibVlc.class);
42
43     LibVlc SYNC_INSTANCE = (LibVlc) Native.synchronizedLibrary(INSTANCE);
44
45     public static class libvlc_exception_t extends Structure
46     {
47
48         public int raised;
49
50         public int code;
51
52         public String message;
53     }
54
55     public static class libvlc_log_message_t extends Structure
56     {
57
58         public int sizeof_msg; /* sizeof() of message structure, must be filled in by user */
59
60         public int i_severity; /* 0=INFO, 1=ERR, 2=WARN, 3=DBG */
61
62         public String psz_type; /* module type */
63
64         public String psz_name; /* module name */
65
66         public String psz_header; /* optional header */
67
68         public String psz_message; /* message */
69     }
70
71     public static class libvlc_event_t extends Structure
72     {
73
74         public int type;
75
76         public Pointer obj;
77
78         public event_type_specific event_type_specific;
79
80     }
81
82     public class media_meta_changed extends Structure
83     {
84
85         public Pointer meta_type;
86     }
87
88     public class media_subitem_added extends Structure
89     {
90
91         public LibVlcMediaDescriptor new_child;
92     }
93
94     public class media_duration_changed extends Structure
95     {
96
97         public NativeLong new_duration;
98     }
99
100     public class media_preparsed_changed extends Structure
101     {
102
103         public int new_status;
104     }
105
106     public class media_freed extends Structure
107     {
108
109         public LibVlcMediaDescriptor md;
110     }
111
112     public class media_state_changed extends Structure
113     {
114
115         // @todo: check this one
116         public int new_state;
117     }
118
119     /* media instance */
120
121     public class media_player_position_changed extends Structure
122     {
123
124         public float new_position;
125     }
126
127     public class media_player_time_changed extends Structure
128     {
129
130         // @todo: check this one
131         public long new_time;
132     }
133
134     /* media list */
135     public class media_list_item_added extends Structure
136     {
137
138         public LibVlcMediaDescriptor item;
139
140         public int index;
141     }
142
143     public class media_list_will_add_item extends Structure
144     {
145
146         public LibVlcMediaDescriptor item;
147
148         public int index;
149     }
150
151     public class media_list_item_deleted extends Structure
152     {
153
154         public LibVlcMediaDescriptor item;
155
156         public int index;
157     }
158
159     public class media_list_will_delete_item extends Structure
160     {
161
162         public LibVlcMediaDescriptor item;
163
164         public int index;
165     }
166
167     /* media list view */
168     public class media_list_view_item_added extends Structure
169     {
170
171         public LibVlcMediaDescriptor item;
172
173         public int index;
174     }
175
176     public class media_list_view_will_add_item extends Structure
177     {
178
179         public LibVlcMediaDescriptor item;
180
181         public int index;
182     }
183
184     public class media_list_view_item_deleted extends Structure
185     {
186
187         public LibVlcMediaDescriptor item;
188
189         public int index;
190     }
191
192     public class media_list_view_will_delete_item extends Structure
193     {
194
195         public LibVlcMediaDescriptor item;
196
197         public int index;
198     }
199
200     /* media discoverer */
201     public class media_media_discoverer_started extends Structure
202     {
203
204         public Pointer unused;
205     }
206
207     public class media_media_discoverer_ended extends Structure
208     {
209
210         public Pointer unused;
211     }
212
213     public class event_type_specific extends Union
214     {
215
216         public media_meta_changed media_meta_changed;
217
218         public media_subitem_added media_subitem_added;
219
220         public media_duration_changed media_duration_changed;
221
222         public media_preparsed_changed media_preparsed_changed;
223
224         public media_freed media_freed;
225
226         public media_state_changed media_state_changed;
227
228         public media_player_position_changed media_player_position_changed;
229
230         public media_player_time_changed media_player_time_changed;
231
232         public media_list_item_added media_list_item_added;
233
234         public media_list_will_add_item media_list_will_add_item;
235
236         public media_list_item_deleted media_list_item_deleted;
237
238         public media_list_will_delete_item media_list_will_delete_item;
239
240         public media_list_view_item_added media_list_view_item_added;
241
242         public media_list_view_will_add_item media_list_view_will_add_item;
243
244         public media_list_view_item_deleted media_list_view_item_deleted;
245
246         public media_list_view_will_delete_item media_list_view_will_delete_item;
247     }
248
249     public class LibVlcInstance extends PointerType
250     {
251     }
252
253     public class LibVlcMediaDescriptor extends PointerType
254     {
255     }
256
257     public class LibVlcMediaInstance extends PointerType
258     {
259     }
260
261     public class LibVlcMediaList extends PointerType
262     {
263     }
264
265     public class LibVlcMediaListPlayer extends PointerType
266     {
267     }
268
269     public class LibVlcEventManager extends PointerType
270     {
271     }
272
273     public class LibVlcLog extends PointerType
274     {
275     }
276
277     public class LibVlcLogIterator extends PointerType
278     {
279     }
280
281     // exception handling
282     void libvlc_exception_init(libvlc_exception_t exception);
283
284     int libvlc_exception_raised(final libvlc_exception_t exception);
285
286     void libvlc_exception_raise(libvlc_exception_t exception, String format, Object... args);
287
288     void libvlc_exception_clear(libvlc_exception_t exception);
289
290     String libvlc_exception_get_message(libvlc_exception_t exception);
291
292     // core
293     LibVlcInstance libvlc_new(int argc, String[] argv, libvlc_exception_t exception);
294
295     void libvlc_release(LibVlcInstance libvlc_instance_t);
296
297     // video
298
299     void libvlc_video_set_parent(LibVlcInstance libvlc_instance, long drawable, libvlc_exception_t exception);
300
301     void libvlc_toggle_fullscreen(LibVlcMediaInstance libvlc_instance);
302
303     void libvlc_set_fullscreen(LibVlcMediaInstance instance, int fullscreen, libvlc_exception_t exception);
304
305     int libvlc_get_fullscreen(LibVlcMediaInstance instance, libvlc_exception_t exception);
306
307     int libvlc_video_get_height(LibVlcMediaInstance instance, libvlc_exception_t exception);
308
309     int libvlc_video_get_width(LibVlcMediaInstance instance, libvlc_exception_t exception);
310
311     String libvlc_video_get_aspect_ration(LibVlcMediaInstance instance, libvlc_exception_t exception);
312
313     void libvlc_video_set_aspect_ration(LibVlcMediaInstance instance, String ratio, libvlc_exception_t exception);
314
315     int libvlc_video_get_spu(LibVlcMediaInstance instance, libvlc_exception_t exception);
316
317     int libvlc_video_set_spu(LibVlcMediaInstance instance, int spu, libvlc_exception_t exception);
318
319     String libvlc_video_get_crop_geometry(LibVlcMediaInstance instance, libvlc_exception_t exception);
320
321     void libvlc_video_set_crop_geometry(LibVlcMediaInstance instance, String geometry, libvlc_exception_t exception);
322
323     void libvlc_video_take_snapshot(LibVlcMediaInstance instance, String filename, int width, int height,
324         libvlc_exception_t exception);
325
326     void libvlc_video_destroy(LibVlcMediaInstance instance, libvlc_exception_t exception);
327
328     void libvlc_video_resize(LibVlcMediaInstance instance, int width, int height, libvlc_exception_t exception);
329
330     void libvlc_video_reparent(LibVlcMediaInstance instance, long drawable, libvlc_exception_t exception);
331
332     void libvlc_video_set_size(LibVlcInstance instance, int width, int height, libvlc_exception_t exception);
333
334     // audio
335
336     void libvlc_audio_toggle_mute(LibVlcInstance instance, libvlc_exception_t exception);
337
338     void libvlc_audio_set_mute(LibVlcInstance instance, int mute, libvlc_exception_t exception);
339
340     int libvlc_audio_get_mute(LibVlcInstance instance, libvlc_exception_t exception);
341
342     int libvlc_audio_get_volume(LibVlcInstance instance, libvlc_exception_t exception);
343
344     int libvlc_audio_set_volume(LibVlcInstance instance, int volume, libvlc_exception_t exception);
345
346     int libvlc_audio_get_track_count(LibVlcMediaInstance mediaInstance, libvlc_exception_t exception);
347
348     int libvlc_audio_get_track(LibVlcMediaInstance mediaInstance, libvlc_exception_t exception);
349
350     void libvlc_audio_set_track(LibVlcMediaInstance mediaInstance, int channel, libvlc_exception_t exception);
351
352     int libvlc_audio_get_channel(LibVlcInstance instance, libvlc_exception_t exception);
353
354     void libvlc_audio_set_channel(LibVlcInstance instance, int channel, libvlc_exception_t exception);
355
356     // playlist
357
358     void libvlc_playlist_loop(LibVlcInstance instance, int loop, libvlc_exception_t exception);
359
360     void libvlc_playlist_play(LibVlcInstance instance, int itemIndex, int optionsCount, String[] options,
361         libvlc_exception_t exception);
362
363     void libvlc_playlist_pause(LibVlcInstance instance, libvlc_exception_t exception);
364
365     void libvlc_playlist_stop(LibVlcInstance instance, libvlc_exception_t exception);
366
367     int libvlc_playlist_isplaying(LibVlcInstance instance, libvlc_exception_t exception);
368
369     int libvlc_playlist_items_count(LibVlcInstance instance, libvlc_exception_t exception);
370
371     void libvlc_playlist_next(LibVlcInstance instance, libvlc_exception_t exception);
372
373     void libvlc_playlist_prev(LibVlcInstance instance, libvlc_exception_t exception);
374
375     void libvlc_playlist_clear(LibVlcInstance instance, libvlc_exception_t exception);
376
377     int libvlc_playlist_add(LibVlcInstance instance, String uri, String name, libvlc_exception_t exception);
378
379     int libvlc_playlist_delete_item(LibVlcInstance instance, int itemIndex, libvlc_exception_t exception);
380
381     LibVlcMediaInstance libvlc_playlist_get_media_player(LibVlcInstance instance, libvlc_exception_t exception);
382
383     int libvlc_media_player_is_seekable(LibVlcMediaInstance instance, libvlc_exception_t exception);
384
385     int libvlc_media_player_can_pause(LibVlcMediaInstance instance, libvlc_exception_t exception);
386
387     // media descriptor
388
389     LibVlcMediaDescriptor libvlc_media_new(LibVlcInstance libvlc_instance, String mrl, libvlc_exception_t exception);
390
391     void libvlc_media_add_option(LibVlcMediaDescriptor media, String option, libvlc_exception_t exception);
392
393     String libvlc_media_get_mrl(LibVlcMediaDescriptor media);
394
395     void libvlc_media_release(LibVlcMediaDescriptor media);
396
397     LibVlcEventManager libvlc_media_event_manager(LibVlcMediaDescriptor media, libvlc_exception_t exception);
398
399     // media instance
400
401     LibVlcMediaInstance libvlc_media_player_new(LibVlcInstance instance, libvlc_exception_t exception);
402
403     LibVlcMediaInstance libvlc_media_player_new_from_media(LibVlcMediaDescriptor media, libvlc_exception_t exception);
404
405     void libvlc_media_player_play(LibVlcMediaInstance media_player, libvlc_exception_t exception);
406
407     void libvlc_media_player_pause(LibVlcMediaInstance media_player, libvlc_exception_t exception);
408
409     void libvlc_media_player_stop(LibVlcMediaInstance media_player, libvlc_exception_t exception);
410
411     void libvlc_media_player_set_drawable(LibVlcMediaInstance libvlc_media_player, long drawable,
412         libvlc_exception_t exception);
413
414     long libvlc_media_player_get_length(LibVlcMediaInstance instance, libvlc_exception_t exception);
415
416     long libvlc_media_player_get_time(LibVlcMediaInstance instance, libvlc_exception_t exception);
417
418     void libvlc_media_player_set_time(LibVlcMediaInstance instance, long time, libvlc_exception_t exception);
419
420     float libvlc_media_player_get_position(LibVlcMediaInstance instance, libvlc_exception_t exception);
421
422     void libvlc_media_player_set_position(LibVlcMediaInstance instance, float position, libvlc_exception_t exception);
423
424     int libvlc_media_player_will_play(LibVlcMediaInstance instance, libvlc_exception_t exception);
425
426     void libvlc_media_player_set_rate(LibVlcMediaInstance instance, float rate, libvlc_exception_t exception);
427
428     float libvlc_media_player_get_rate(LibVlcMediaInstance instance, libvlc_exception_t exception);
429
430     int libvlc_media_player_has_vout(LibVlcMediaInstance instance2, libvlc_exception_t exception);
431
432     float libvlc_media_player_get_fps(LibVlcMediaInstance instance2, libvlc_exception_t exception);
433
434     void libvlc_media_player_release(LibVlcMediaInstance instance);
435
436     LibVlcEventManager libvlc_media_player_event_manager(LibVlcMediaInstance media_player, libvlc_exception_t exception);
437
438     // media list
439
440     LibVlcMediaList libvlc_media_list_new(LibVlcInstance libvlc_instance, libvlc_exception_t exception);
441
442     void libvlc_media_list_release(LibVlcMediaList libVlcMediaList);
443
444     void libvlc_media_list_add_file_content(LibVlcMediaList libvlc_media_list, String fileName,
445         libvlc_exception_t exception);
446
447     void libvlc_media_list_set_media(LibVlcMediaList libvlc_media_list, LibVlcMediaDescriptor libvlc_media,
448         libvlc_exception_t exception);
449
450     LibVlcMediaDescriptor libvlc_media_list_media(LibVlcMediaList libvlc_media_list, libvlc_exception_t exception);
451
452     void libvlc_media_list_add_media(LibVlcMediaList libvlc_media_list, LibVlcMediaDescriptor libvlc_media,
453         libvlc_exception_t exception);
454
455     void libvlc_media_list_insert_media(LibVlcMediaList libvlc_media_list, LibVlcMediaDescriptor libvlc_media,
456         int position, libvlc_exception_t exception);
457
458     void libvlc_media_list_remove_index(LibVlcMediaList libvlc_media_list, int position, libvlc_exception_t exception);
459
460     int libvlc_media_list_count(LibVlcMediaList libvlc_media_list, libvlc_exception_t exception);
461
462     LibVlcMediaDescriptor libvlc_media_list_item_at_index(LibVlcMediaList libvlc_media_list, int position,
463         libvlc_exception_t exception);
464
465     int libvlc_media_list_index_of_item(LibVlcMediaList libvlc_media_list, LibVlcMediaDescriptor libvlc_media,
466         libvlc_exception_t exception);
467
468     int libvlc_media_list_is_readonly(LibVlcMediaList libvlc_media_list);
469
470     LibVlcEventManager libvlc_media_list_event_manager(LibVlcMediaList libvlc_media_list, libvlc_exception_t exception);
471
472     // libvlc_media_list_player
473
474     LibVlcMediaListPlayer libvlc_media_list_player_new(LibVlcInstance libvlc_media_player, libvlc_exception_t exception);
475
476     void libvlc_media_list_player_release(LibVlcMediaListPlayer libvlc_media_list_player);
477
478     void libvlc_media_list_player_set_media_player(LibVlcMediaListPlayer libvlc_media_list_player,
479         LibVlcMediaInstance libvlc_media_player, libvlc_exception_t exception);
480
481     void libvlc_media_list_player_set_media_list(LibVlcMediaListPlayer libvlc_media_list_player,
482         LibVlcMediaList libvlc_media_list, libvlc_exception_t exception);
483
484     void libvlc_media_list_player_play(LibVlcMediaListPlayer libvlc_media_list_player, libvlc_exception_t exception);
485
486     void libvlc_media_list_player_pause(LibVlcMediaListPlayer libvlc_media_list_player, libvlc_exception_t exception);
487
488     int libvlc_media_list_player_is_playing(LibVlcMediaListPlayer libvlc_media_list_player, libvlc_exception_t exception);
489
490     int libvlc_media_list_player_get_state(LibVlcMediaListPlayer libvlc_media_list_player, libvlc_exception_t exception);
491
492     void libvlc_media_list_player_play_item_at_index(LibVlcMediaListPlayer libvlc_media_list_player, int position,
493         libvlc_exception_t exception);
494
495     void libvlc_media_list_player_play_item(LibVlcMediaListPlayer libvlc_media_list_player,
496         LibVlcMediaDescriptor libvlc_media, libvlc_exception_t exception);
497
498     void libvlc_media_list_player_stop(LibVlcMediaListPlayer libvlc_media_list_player, libvlc_exception_t exception);
499
500     void libvlc_media_list_player_next(LibVlcMediaListPlayer libvlc_media_list_player, libvlc_exception_t exception);
501
502     // VLM
503
504     void libvlc_vlm_add_broadcast(LibVlcInstance p_instance, String psz_name, String psz_input, String psz_output,
505         int i_options, String[] ppsz_options, int b_enabled, int b_loop, libvlc_exception_t p_e);
506
507     void libvlc_vlm_del_media(LibVlcInstance p_instance, String psz_name, libvlc_exception_t p_e);
508
509     void libvlc_vlm_set_enabled(LibVlcInstance p_instance, String psz_name, int b_enabled, libvlc_exception_t p_e);
510
511     void libvlc_vlm_set_output(LibVlcInstance p_instance, String psz_name, String psz_output, libvlc_exception_t p_e);
512
513     void libvlc_vlm_set_input(LibVlcInstance p_instance, String psz_name, String psz_input, libvlc_exception_t p_e);
514
515     void libvlc_vlm_add_input(LibVlcInstance p_instance, String psz_name, String psz_input, libvlc_exception_t p_e);
516
517     void libvlc_vlm_set_loop(LibVlcInstance p_instance, String psz_name, int b_loop, libvlc_exception_t p_e);
518
519     void libvlc_vlm_change_media(LibVlcInstance p_instance, String psz_name, String psz_input, String psz_output,
520         int i_options, String[] ppsz_options, int b_enabled, int b_loop, libvlc_exception_t p_e);
521
522     void libvlc_vlm_play_media(LibVlcInstance p_instance, String psz_name, libvlc_exception_t p_e);
523
524     void libvlc_vlm_stop_media(LibVlcInstance p_instance, String psz_name, libvlc_exception_t p_e);
525
526     void libvlc_vlm_pause_media(LibVlcInstance p_instance, String psz_name, libvlc_exception_t p_e);
527
528     void libvlc_vlm_seek_media(LibVlcInstance p_instance, String psz_name, float f_percentage, libvlc_exception_t p_e);
529
530     String libvlc_vlm_show_media(LibVlcInstance p_instance, String psz_name, libvlc_exception_t p_e);
531
532     void libvlc_vlm_release(LibVlcInstance p_instance, libvlc_exception_t p_e);
533     
534     // event manager
535
536     public static interface LibVlcCallback extends Callback
537     {
538
539         void callback(libvlc_event_t libvlc_event, Pointer userData);
540     }
541
542     void libvlc_event_attach(LibVlcEventManager event_manager, int event_type, LibVlcCallback callback,
543         Pointer userData, libvlc_exception_t exception);
544
545     void libvlc_event_detach(LibVlcEventManager event_manager, int event_type, LibVlcCallback callback,
546         Pointer userData, libvlc_exception_t excecption);
547
548     void libvlc_toggle_fullscreen(LibVlcMediaInstance instance, libvlc_exception_t exception);
549
550     // logging
551
552     int libvlc_get_log_verbosity(LibVlcInstance p_instance, libvlc_exception_t p_e);
553
554     void libvlc_set_log_verbosity(LibVlcInstance p_instance, int level, libvlc_exception_t p_e);
555
556     LibVlcLog libvlc_log_open(LibVlcInstance p_instance, libvlc_exception_t p_e);
557
558     void libvlc_log_close(LibVlcLog p_log, libvlc_exception_t p_e);
559
560     int libvlc_log_count(LibVlcLog p_log, libvlc_exception_t p_e);
561
562     void libvlc_log_clear(LibVlcLog p_log, libvlc_exception_t p_e);
563
564     LibVlcLogIterator libvlc_log_get_iterator(LibVlcLog p_log, libvlc_exception_t p_e);
565
566     void libvlc_log_iterator_free(LibVlcLogIterator p_iter, libvlc_exception_t p_e);
567
568     int libvlc_log_iterator_has_next(LibVlcLogIterator p_iter, libvlc_exception_t p_e);
569
570     libvlc_log_message_t libvlc_log_iterator_next(LibVlcLogIterator p_iter, libvlc_log_message_t p_buffer,
571         libvlc_exception_t p_e);
572
573 }