Commit c37d735c authored by Michael Niedermayer's avatar Michael Niedermayer

jpeg2000dec: mct_decode: remove unused return

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e816a8bc
......@@ -965,10 +965,9 @@ static const int i_ict_params[4] = {
116130
};
static int mct_decode(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile)
static void mct_decode(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile)
{
int i, csize = 1;
int ret = 0;
int32_t *src[3], i0, i1, i2;
float *srcf[3], i0f, i1f, i2f;
......@@ -1014,7 +1013,6 @@ static int mct_decode(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile)
}
break;
}
return ret;
}
static int jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile,
......
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