mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
Remove unused parameter.
Originally committed as revision 23563 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a1629e2848
commit
411e859bce
@ -646,9 +646,8 @@ static int decode_band(IVI5DecContext *ctx, int plane_num,
|
|||||||
* Switches buffers.
|
* Switches buffers.
|
||||||
*
|
*
|
||||||
* @param ctx [in,out] ptr to the decoder context
|
* @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) {
|
switch (ctx->prev_frame_type) {
|
||||||
case FRAMETYPE_INTRA:
|
case FRAMETYPE_INTRA:
|
||||||
@ -752,7 +751,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch_buffers(ctx, avctx);
|
switch_buffers(ctx);
|
||||||
|
|
||||||
//START_TIMER;
|
//START_TIMER;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user