Commit 658e626c authored by Martin Vignali's avatar Martin Vignali Committed by Carl Eugen Hoyos

libavcodec/psd : add support for psd bitmap mode

Fixes ticket #6044

Based on patch by Carl Eugen Hoyos
parent 4313ed51
...@@ -316,9 +316,12 @@ static int decode_frame(AVCodecContext *avctx, void *data, ...@@ -316,9 +316,12 @@ static int decode_frame(AVCodecContext *avctx, void *data,
s->pixel_size = s->channel_depth >> 3;/* in byte */ s->pixel_size = s->channel_depth >> 3;/* in byte */
s->line_size = s->width * s->pixel_size; s->line_size = s->width * s->pixel_size;
s->uncompressed_size = s->line_size * s->height * s->channel_count;
switch (s->color_mode) { switch (s->color_mode) {
case PSD_BITMAP:
s->line_size = s->width + 7 >> 3;
avctx->pix_fmt = AV_PIX_FMT_MONOWHITE;
break;
case PSD_INDEXED: case PSD_INDEXED:
if (s->channel_depth != 8 || s->channel_count != 1) { if (s->channel_depth != 8 || s->channel_count != 1) {
av_log(s->avctx, AV_LOG_ERROR, av_log(s->avctx, AV_LOG_ERROR,
...@@ -383,6 +386,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, ...@@ -383,6 +386,8 @@ static int decode_frame(AVCodecContext *avctx, void *data,
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
s->uncompressed_size = s->line_size * s->height * s->channel_count;
if ((ret = ff_get_buffer(avctx, picture, 0)) < 0) if ((ret = ff_get_buffer(avctx, picture, 0)) < 0)
return ret; return ret;
...@@ -430,9 +435,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, ...@@ -430,9 +435,9 @@ static int decode_frame(AVCodecContext *avctx, void *data,
plane_number = eq_channel[c]; plane_number = eq_channel[c];
ptr = picture->data[plane_number];/* get the right plane */ ptr = picture->data[plane_number];/* get the right plane */
for (y = 0; y < s->height; y++) { for (y = 0; y < s->height; y++) {
memcpy(ptr, ptr_data, s->width * s->pixel_size); memcpy(ptr, ptr_data, s->line_size);
ptr += picture->linesize[plane_number]; ptr += picture->linesize[plane_number];
ptr_data += s->width * s->pixel_size; ptr_data += s->line_size;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment