jpeg2000dec: mct_decode: remove unused return

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-05-28 22:47:11 +02:00
parent e816a8bc26
commit c37d735c1c
1 changed files with 1 additions and 3 deletions

View File

@ -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,