mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/mjpegdec: simplify rgb index remaping
This commit is contained in:
parent
ff21d4735e
commit
09f0429b99
@ -1600,9 +1600,7 @@ int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask,
|
|||||||
s->h_scount[i] = s->h_count[index];
|
s->h_scount[i] = s->h_count[index];
|
||||||
s->v_scount[i] = s->v_count[index];
|
s->v_scount[i] = s->v_count[index];
|
||||||
|
|
||||||
if(nb_components == 3 && s->nb_components == 3 && s->avctx->pix_fmt == AV_PIX_FMT_GBR24P)
|
if((nb_components == 1 || nb_components == 3) && s->nb_components == 3 && s->avctx->pix_fmt == AV_PIX_FMT_GBR24P)
|
||||||
index = (i+2)%3;
|
|
||||||
if(nb_components == 1 && s->nb_components == 3 && s->avctx->pix_fmt == AV_PIX_FMT_GBR24P)
|
|
||||||
index = (index+2)%3;
|
index = (index+2)%3;
|
||||||
|
|
||||||
s->comp_index[i] = index;
|
s->comp_index[i] = index;
|
||||||
|
Loading…
Reference in New Issue
Block a user