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