Commit 9276f07c authored by maxim's avatar maxim

Remove unused parameter.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23563 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 517e70e0
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment