mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
Merge commit '41bcc3d15204f290400ba02e4e8f87fc07bcc00e'
* commit '41bcc3d15204f290400ba02e4e8f87fc07bcc00e': jpeg2000: Split codeblock decoding from the main tile decoding Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
5a754f92d1
@ -1650,7 +1650,9 @@ static void tile_codeblocks(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile)
|
||||
Jpeg2000Prec *prec = band->prec + precno;
|
||||
|
||||
/* Loop on codeblocks */
|
||||
for (cblkno = 0; cblkno < prec->nb_codeblocks_width * prec->nb_codeblocks_height; cblkno++) {
|
||||
for (cblkno = 0;
|
||||
cblkno < prec->nb_codeblocks_width * prec->nb_codeblocks_height;
|
||||
cblkno++) {
|
||||
int x, y;
|
||||
Jpeg2000Cblk *cblk = prec->cblk + cblkno;
|
||||
decode_cblk(s, codsty, &t1, cblk,
|
||||
|
Loading…
x
Reference in New Issue
Block a user