# HG changeset patch # User maxim # Date 1276188774 0 # Node ID b42f18b5c4795704bd0c0c1f68971790d70b8307 # Parent f6a2af58f3e0e5e3f6f16d05d32bd92a3b660e5d Remove unused parameter. diff -r f6a2af58f3e0 -r b42f18b5c479 indeo5.c --- a/indeo5.c Thu Jun 10 08:39:05 2010 +0000 +++ b/indeo5.c Thu Jun 10 16:52:54 2010 +0000 @@ -646,9 +646,8 @@ * Switches buffers. * * @param ctx [in,out] ptr to the decoder context - * @param avctx [in] ptr to the AVCodecContext */ -static void switch_buffers(IVI5DecContext *ctx, AVCodecContext *avctx) +static void switch_buffers(IVI5DecContext *ctx) { switch (ctx->prev_frame_type) { case FRAMETYPE_INTRA: @@ -752,7 +751,7 @@ return -1; } - switch_buffers(ctx, avctx); + switch_buffers(ctx); //START_TIMER;