[FFmpeg-cvslog] r16011 - trunk/libavcodec/aasc.c
kostya
subversion
Sat Dec 6 09:57:31 CET 2008
Author: kostya
Date: Sat Dec 6 09:57:31 2008
New Revision: 16011
Log:
AASC can contain raw data in addition to MS-RLE
Modified:
trunk/libavcodec/aasc.c
Modified: trunk/libavcodec/aasc.c
==============================================================================
--- trunk/libavcodec/aasc.c (original)
+++ trunk/libavcodec/aasc.c Sat Dec 6 09:57:31 2008
@@ -62,6 +62,7 @@ static int aasc_decode_frame(AVCodecCont
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(AVCodecCont
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;
More information about the ffmpeg-cvslog
mailing list