diff options
author | Maxim Poliakovski <max_pole@gmx.de> | 2010-06-10 16:52:54 +0000 |
---|---|---|
committer | Maxim Poliakovski <max_pole@gmx.de> | 2010-06-10 16:52:54 +0000 |
commit | 411e859bceefd465864f9a8ed29e1c08927e12f3 (patch) | |
tree | ae00c760fbfa823e66ea399279fc8241c5dd3ac2 /libavcodec/indeo5.c | |
parent | a1629e2848a6e2505788998a1aa7248b62c0be9e (diff) | |
download | ffmpeg-411e859bceefd465864f9a8ed29e1c08927e12f3.tar.gz |
Remove unused parameter.
Originally committed as revision 23563 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo5.c')
-rw-r--r-- | libavcodec/indeo5.c | 5 |
1 files changed, 2 insertions, 3 deletions
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; |