Commit 2be0bd12 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/jpeg2000dec: Fix return type of get_plt()

Found-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent e6271133
...@@ -829,7 +829,7 @@ static uint8_t get_tlm(Jpeg2000DecoderContext *s, int n) ...@@ -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;
......
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