[vlc-commits] omxil: fix warning
    Thomas Guillem 
    git at videolan.org
       
    Sun Jun 29 22:15:22 CEST 2014
    
    
  
vlc | branch: master | Thomas Guillem <guillem at archos.com> | Thu Jun 26 14:05:55 2014 +0200| [aeadfdbecdb27606c88af7c2fb8cc8f83320ba57] | committer: Martin Storsjö
omxil: fix warning
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=aeadfdbecdb27606c88af7c2fb8cc8f83320ba57
---
 modules/codec/omxil/omxil.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/codec/omxil/omxil.c b/modules/codec/omxil/omxil.c
index df75c93..012650c 100644
--- a/modules/codec/omxil/omxil.c
+++ b/modules/codec/omxil/omxil.c
@@ -1195,7 +1195,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
 
     OMX_BUFFERHEADERTYPE *p_header;
     block_t *p_block;
-    int i_input_used = 0;
+    unsigned int i_input_used = 0;
     struct H264ConvertState convert_state = { 0, 0 };
 
     if( !pp_block || !*pp_block )
    
    
More information about the vlc-commits
mailing list