You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
j2kdec: s/decode_packets/jpeg2000_decode_packets/
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -588,7 +588,7 @@ static int decode_packet(J2kDecoderContext *s, J2kCodingStyle *codsty, J2kResLev
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int decode_packets(J2kDecoderContext *s, J2kTile *tile)
|
||||
static int jpeg2000_decode_packets(J2kDecoderContext *s, J2kTile *tile)
|
||||
{
|
||||
int layno, reslevelno, compno, precno, ok_reslevel;
|
||||
s->bit_index = 8;
|
||||
@@ -942,7 +942,7 @@ static int decode_codestream(J2kDecoderContext *s)
|
||||
av_log(s->avctx, AV_LOG_ERROR, "tile initialization failed\n");
|
||||
return ret;
|
||||
}
|
||||
if (ret = decode_packets(s, tile)) {
|
||||
if (ret = jpeg2000_decode_packets(s, tile)) {
|
||||
av_log(s->avctx, AV_LOG_ERROR, "packets decoding failed\n");
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user