mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/jpeg2000dec: Fix return type of get_plt()
Found-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e627113329
commit
2be0bd12b7
|
@ -829,7 +829,7 @@ static uint8_t get_tlm(Jpeg2000DecoderContext *s, int n)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint8_t get_plt(Jpeg2000DecoderContext *s, int n)
|
static int get_plt(Jpeg2000DecoderContext *s, int n)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int v;
|
int v;
|
||||||
|
|
Loading…
Reference in New Issue