vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Wed May 3 22:14:05 2017 +0200| [5cd5a8124e44d7dd7d76abf08c2f89846db4599d] | committer: Jean-Baptiste Kempf
libVLC: comment the ranges for viewpoint > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5cd5a8124e44d7dd7d76abf08c2f89846db4599d --- include/vlc/libvlc_media_player.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/vlc/libvlc_media_player.h b/include/vlc/libvlc_media_player.h index a20888140f..dbeafa29d1 100644 --- a/include/vlc/libvlc_media_player.h +++ b/include/vlc/libvlc_media_player.h @@ -1184,10 +1184,10 @@ LIBVLC_API void libvlc_video_set_aspect_ratio( libvlc_media_player_t *p_mi, cons */ typedef struct libvlc_video_viewpoint_t { - float f_yaw; /**< view point yaw in degrees */ - float f_pitch; /**< view point pitch in degrees */ - float f_roll; /**< view point roll in degrees */ - float f_field_of_view; /**< field of view in degrees (default 80.0f) */ + float f_yaw; /**< view point yaw in degrees ]-180;180] */ + float f_pitch; /**< view point pitch in degrees ]-90;90] */ + float f_roll; /**< view point roll in degrees ]-180;180] */ + float f_field_of_view; /**< field of view in degrees ]0;180[ (default 80.)*/ } libvlc_video_viewpoint_t; /** _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
