vlc | branch: master | Steve Lhomme <[email protected]> | Fri Mar 31 10:50:42 2017 +0200| [43fee490b8a99ed6e576d67ea42fe663dca6cae5] | committer: Jean-Baptiste Kempf
vlc_vout_wrapper: the sar is always unsigned Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=43fee490b8a99ed6e576d67ea42fe663dca6cae5 --- include/vlc_vout_wrapper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/vlc_vout_wrapper.h b/include/vlc_vout_wrapper.h index 7cf13b8..ee69ad5 100644 --- a/include/vlc_vout_wrapper.h +++ b/include/vlc_vout_wrapper.h @@ -66,8 +66,8 @@ typedef struct { unsigned wm_state; #endif struct { - int num; - int den; + unsigned num; + unsigned den; } sar; } vout_display_state_t; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
