summaryrefslogtreecommitdiff
path: root/libavcodec/sunrast.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-08 20:16:57 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-01-08 20:16:57 +0100
commit2f21c5078438665e8d1b0388d3a44067366fbbe2 (patch)
treef4c7c05dacd2eb21a71dbca1157175c7188f8811 /libavcodec/sunrast.c
parentca324f9869bc70650da22c882e762da6f573fb0b (diff)
Support decoding 32bit sunrast images.
Fixes ticket #895.
Diffstat (limited to 'libavcodec/sunrast.c')
-rw-r--r--libavcodec/sunrast.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/sunrast.c b/libavcodec/sunrast.c
index c33265dc84..f621cbe5ef 100644
--- a/libavcodec/sunrast.c
+++ b/libavcodec/sunrast.c
@@ -98,6 +98,9 @@ static int sunrast_decode_frame(AVCodecContext *avctx, void *data,
case 24:
avctx->pix_fmt = (type == RT_FORMAT_RGB) ? PIX_FMT_RGB24 : PIX_FMT_BGR24;
break;
+ case 32:
+ avctx->pix_fmt = (type == RT_FORMAT_RGB) ? PIX_FMT_RGB0 : PIX_FMT_BGR0;
+ break;
default:
av_log(avctx, AV_LOG_ERROR, "invalid depth\n");
return -1;