Exemplo n.º 1
0
 private static extern string libvlc_video_get_aspect_ratio(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 2
0
 private static extern void libvlc_video_set_aspect_ratio(
     VlcInputHandle p_input,
     [MarshalAs(UnmanagedType.LPStr)] string aspect_ratio,
     VlcExceptionHandle p_exception);
Exemplo n.º 3
0
 private static extern bool libvlc_get_fullscreen(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 4
0
 private static extern int libvlc_video_get_width(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 5
0
 private static extern Int64 libvlc_input_get_time(VlcInputHandle input, VlcExceptionHandle exception);
Exemplo n.º 6
0
 private static extern void libvlc_set_fullscreen(VlcInputHandle p_input, bool b, VlcExceptionHandle p_exception);
Exemplo n.º 7
0
 private static extern bool libvlc_input_will_play(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 8
0
 private static extern void libvlc_input_free(VlcInputHandle input);
Exemplo n.º 9
0
 private static extern void libvlc_input_set_rate(VlcInputHandle p_input, float f, VlcExceptionHandle p_exception);
Exemplo n.º 10
0
 private static extern Int32 libvlc_input_get_state(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 11
0
 private static extern void libvlc_input_set_position(VlcInputHandle input, float pos, VlcExceptionHandle exception);
Exemplo n.º 12
0
 private static extern float libvlc_input_get_position(VlcInputHandle input, VlcExceptionHandle exception);
Exemplo n.º 13
0
 private static extern void libvlc_input_set_time(VlcInputHandle input, Int64 time, VlcExceptionHandle exception);
Exemplo n.º 14
0
 private static extern void libvlc_toggle_fullscreen(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 15
0
 private static extern bool libvlc_input_has_vout(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 16
0
 private static extern void libvlc_video_take_snapshot(
     VlcInputHandle p_input,
     [MarshalAs(UnmanagedType.LPStr)]
     string file_name,
     VlcExceptionHandle p_exception);
Exemplo n.º 17
0
 private static extern float libvlc_input_get_fps(VlcInputHandle p_input, VlcExceptionHandle p_exception);
Exemplo n.º 18
0
 internal VlcInput(VlcInstanceHandle _inst)
 {
     _input = libvlc_playlist_get_input(_inst, _excp);
 }
Exemplo n.º 19
0
 private static extern int libvlc_video_reparent(VlcInputHandle p_input, IntPtr hwnd, VlcExceptionHandle p_exception);