[FFmpeg-cvslog] r23563 - trunk/libavcodec/indeo5.c

maxim subversion
Thu Jun 10 18:52:54 CEST 2010


Author: maxim
Date: Thu Jun 10 18:52:54 2010
New Revision: 23563

Log:
Remove unused parameter.

Modified:
   trunk/libavcodec/indeo5.c

Modified: trunk/libavcodec/indeo5.c
==============================================================================
--- trunk/libavcodec/indeo5.c	Thu Jun 10 18:51:14 2010	(r23562)
+++ trunk/libavcodec/indeo5.c	Thu Jun 10 18:52:54 2010	(r23563)
@@ -646,9 +646,8 @@ static int decode_band(IVI5DecContext *c
  *  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 *
         return -1;
     }
 
-    switch_buffers(ctx, avctx);
+    switch_buffers(ctx);
 
     //START_TIMER;
 



More information about the ffmpeg-cvslog mailing list