[vlc-commits] vlc_vout_wrapper: the sar is always unsigned

Steve Lhomme git at videolan.org
Fri Apr 7 14:27:14 CEST 2017


vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | 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 <jb at videolan.org>

> 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;
 



More information about the vlc-commits mailing list