From f901bb491e933a06aff842e0859033b98399719d Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Thu, 20 Aug 2009 11:38:51 +0200 Subject: [PATCH] vc1: Correct unsigned use. --- modules/packetizer/vc1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/packetizer/vc1.c b/modules/packetizer/vc1.c index 3dc274e899..9651bae992 100644 --- a/modules/packetizer/vc1.c +++ b/modules/packetizer/vc1.c @@ -203,7 +203,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block ) if( p_sys->b_check_startcode && pp_block && *pp_block ) { /* Fix syntax for (some?) VC1 from asf */ - const int i_startcode = sizeof(p_vc1_startcode); + const unsigned i_startcode = sizeof(p_vc1_startcode); block_t *p_block = *pp_block; if( p_block->i_buffer > 0 && -- 2.39.2