Flip red and blue in rct-less lossless jpeg.
Fixes issue1466, and decoding of plain lossless jpeg. Originally committed as revision 20790 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
49b19191bc
commit
3c3c01d949
1 changed files with 2 additions and 2 deletions
|
|
@ -674,9 +674,9 @@ static int ljpeg_decode_rgb_scan(MJpegDecodeContext *s, int predictor, int point
|
|||
}
|
||||
}else{
|
||||
for(mb_x = 0; mb_x < s->mb_width; mb_x++) {
|
||||
ptr[4*mb_x+0] = buffer[mb_x][0];
|
||||
ptr[4*mb_x+0] = buffer[mb_x][2];
|
||||
ptr[4*mb_x+1] = buffer[mb_x][1];
|
||||
ptr[4*mb_x+2] = buffer[mb_x][2];
|
||||
ptr[4*mb_x+2] = buffer[mb_x][0];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue