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