You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/jpeg2000dec: Show the progression order at debug level for all variants
It was previously shown just for some, this makes it consistent Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -973,6 +973,7 @@ static int jpeg2000_decode_packets(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case JPEG2000_PGOD_LRCP:
|
case JPEG2000_PGOD_LRCP:
|
||||||
|
av_log(s->avctx, AV_LOG_DEBUG, "Progression order LRCP\n");
|
||||||
for (layno = 0; layno < tile->codsty[0].nlayers; layno++) {
|
for (layno = 0; layno < tile->codsty[0].nlayers; layno++) {
|
||||||
ok_reslevel = 1;
|
ok_reslevel = 1;
|
||||||
for (reslevelno = 0; ok_reslevel; reslevelno++) {
|
for (reslevelno = 0; ok_reslevel; reslevelno++) {
|
||||||
@@ -998,6 +999,7 @@ static int jpeg2000_decode_packets(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case JPEG2000_PGOD_CPRL:
|
case JPEG2000_PGOD_CPRL:
|
||||||
|
av_log(s->avctx, AV_LOG_DEBUG, "Progression order CPRL\n");
|
||||||
for (compno = 0; compno < s->ncomponents; compno++) {
|
for (compno = 0; compno < s->ncomponents; compno++) {
|
||||||
Jpeg2000Component *comp = tile->comp + compno;
|
Jpeg2000Component *comp = tile->comp + compno;
|
||||||
Jpeg2000CodingStyle *codsty = tile->codsty + compno;
|
Jpeg2000CodingStyle *codsty = tile->codsty + compno;
|
||||||
|
Reference in New Issue
Block a user