mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge some cases for reading raw data with different bit depths in BMP
Originally committed as revision 18202 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
888facff22
commit
6b78a77a35
@ -244,6 +244,8 @@ static int bmp_decode_frame(AVCodecContext *avctx,
|
||||
}else{
|
||||
switch(depth){
|
||||
case 1:
|
||||
case 8:
|
||||
case 24:
|
||||
for(i = 0; i < avctx->height; i++){
|
||||
memcpy(ptr, buf, n);
|
||||
buf += n;
|
||||
@ -261,20 +263,6 @@ static int bmp_decode_frame(AVCodecContext *avctx,
|
||||
ptr += linesize;
|
||||
}
|
||||
break;
|
||||
case 8:
|
||||
for(i = 0; i < avctx->height; i++){
|
||||
memcpy(ptr, buf, avctx->width);
|
||||
buf += n;
|
||||
ptr += linesize;
|
||||
}
|
||||
break;
|
||||
case 24:
|
||||
for(i = 0; i < avctx->height; i++){
|
||||
memcpy(ptr, buf, avctx->width*(depth>>3));
|
||||
buf += n;
|
||||
ptr += linesize;
|
||||
}
|
||||
break;
|
||||
case 16:
|
||||
for(i = 0; i < avctx->height; i++){
|
||||
const uint16_t *src = (const uint16_t *) buf;
|
||||
|
Loading…
Reference in New Issue
Block a user