mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
jpeg2000dec: mct_decode: remove unused return
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e816a8bc26
commit
c37d735c1c
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user