From b07357af26f3b5dadbea7fa1f255a3d0fc0de630 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 29 Jun 2008 18:22:43 +0300 Subject: [PATCH] schroedinger: fix warnings --- modules/codec/schroedinger.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.39.2