summaryrefslogtreecommitdiff
path: root/libavcodec/aasc.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2008-12-06 08:57:31 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2008-12-06 08:57:31 +0000
commit56da1fd7d111a81237451baf9b531288b1ad5987 (patch)
tree4249d4ba2b172ead5b281a0e9416ebf7e23b9e8a /libavcodec/aasc.c
parentd23b28c78b56f53f3f0e74edb0f15a3b451207ad (diff)
AASC can contain raw data in addition to MS-RLE
Originally committed as revision 16011 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aasc.c')
-rw-r--r--libavcodec/aasc.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/libavcodec/aasc.c b/libavcodec/aasc.c
index 77162f9e7d..fa32231084 100644
--- a/libavcodec/aasc.c
+++ b/libavcodec/aasc.c
@@ -62,6 +62,7 @@ static int aasc_decode_frame(AVCodecContext *avctx,
const uint8_t *buf, int buf_size)
{
AascContext *s = avctx->priv_data;
+ int compr, i, stride;
s->frame.reference = 1;
s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
@@ -70,7 +71,24 @@ static int aasc_decode_frame(AVCodecContext *avctx,
return -1;
}
- ff_msrle_decode(avctx, &s->frame, 8, buf, buf_size);
+ compr = AV_RL32(buf);
+ buf += 4;
+ buf_size -= 4;
+ switch(compr){
+ case 0:
+ stride = (avctx->width * 3 + 3) & ~3;
+ for(i = avctx->height - 1; i >= 0; i--){
+ memcpy(s->frame.data[0] + i*s->frame.linesize[0], buf, avctx->width*3);
+ buf += stride;
+ }
+ break;
+ case 1:
+ ff_msrle_decode(avctx, &s->frame, 8, buf - 4, buf_size + 4);
+ break;
+ default:
+ av_log(avctx, AV_LOG_ERROR, "Unknown compression type %d\n", compr);
+ return -1;
+ }
*data_size = sizeof(AVFrame);
*(AVFrame*)data = s->frame;