mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-22 19:07:57 +00:00
j2kdec: remove pointless swapping
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ebbf10efb0
commit
0f3886fa7d
@ -269,7 +269,7 @@ static int get_siz(J2kDecoderContext *s)
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
s->avctx->pix_fmt = PIX_FMT_BGRA;
|
||||
s->avctx->pix_fmt = PIX_FMT_RGBA;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -848,9 +848,6 @@ static int decode_tile(J2kDecoderContext *s, J2kTile *tile)
|
||||
if (tile->codsty[0].mct)
|
||||
mct_decode(s, tile);
|
||||
|
||||
if (s->avctx->pix_fmt == PIX_FMT_BGRA) // RGBA -> BGRA
|
||||
FFSWAP(int *, src[0], src[2]);
|
||||
|
||||
if (s->precision <= 8) {
|
||||
for (compno = 0; compno < s->ncomponents; compno++){
|
||||
y = tile->comp[compno].coord[1][0] - s->image_offset_y;
|
||||
|
Loading…
Reference in New Issue
Block a user