From 411e859bceefd465864f9a8ed29e1c08927e12f3 Mon Sep 17 00:00:00 2001 From: Maxim Poliakovski Date: Thu, 10 Jun 2010 16:52:54 +0000 Subject: Remove unused parameter. Originally committed as revision 23563 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/indeo5.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libavcodec/indeo5.c') diff --git a/libavcodec/indeo5.c b/libavcodec/indeo5.c index 0898b618c4..db4933dfb8 100644 --- a/libavcodec/indeo5.c +++ b/libavcodec/indeo5.c @@ -646,9 +646,8 @@ static int decode_band(IVI5DecContext *ctx, int plane_num, * 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 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, return -1; } - switch_buffers(ctx, avctx); + switch_buffers(ctx); //START_TIMER; -- cgit v1.2.3