From: RĂ©mi Denis-Courmont Date: Sun, 29 Jun 2008 15:22:43 +0000 (+0300) Subject: schroedinger: fix warnings X-Git-Tag: 0.9.0-test1~45 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=b07357af26f3b5dadbea7fa1f255a3d0fc0de630;p=vlc schroedinger: fix warnings --- diff --git a/modules/codec/schroedinger.c b/modules/codec/schroedinger.c index 46245f8724..adf8017b4b 100644 --- a/modules/codec/schroedinger.c +++ b/modules/codec/schroedinger.c @@ -251,6 +251,7 @@ static void SchroFrameFree( SchroFrame *frame, void *priv) return; if( p_pic->pf_release ) p_pic->pf_release( p_pic ); + (void)frame; } /***************************************************************************** @@ -320,6 +321,7 @@ static void SchroBufferFree( SchroBuffer *buf, void *priv ) return; block_Release( p_block ); + (void)buf; } /***************************************************************************** @@ -362,7 +364,6 @@ static picture_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block ) picture_t *p_pic; block_t *p_block; uint32_t u_pnum; - static int drop = 0; if( !pp_block ) return NULL;