2005-04-03 05:02:08 +00:00
|
|
|
/*
|
2008-04-26 04:14:33 +00:00
|
|
|
* Autodesk RLE Decoder
|
2005-04-03 05:02:08 +00:00
|
|
|
* Copyright (C) 2005 the ffmpeg project
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2005-04-03 05:02:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2005-04-03 05:02:08 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2005-04-03 05:02:08 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-04-03 05:02:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2008-04-26 04:14:33 +00:00
|
|
|
* Autodesk RLE Video Decoder by Konstantin Shishkov
|
2005-04-03 05:02:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "avcodec.h"
|
|
|
|
#include "dsputil.h"
|
2008-09-18 05:20:54 +00:00
|
|
|
#include "msrledec.h"
|
2005-04-03 05:02:08 +00:00
|
|
|
|
|
|
|
typedef struct AascContext {
|
|
|
|
AVCodecContext *avctx;
|
2012-03-31 17:10:54 +00:00
|
|
|
GetByteContext gb;
|
2005-04-03 05:02:08 +00:00
|
|
|
AVFrame frame;
|
|
|
|
} AascContext;
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int aasc_decode_init(AVCodecContext *avctx)
|
2005-04-03 05:02:08 +00:00
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
AascContext *s = avctx->priv_data;
|
2005-04-03 05:02:08 +00:00
|
|
|
|
|
|
|
s->avctx = avctx;
|
2012-05-19 00:07:45 +00:00
|
|
|
switch (avctx->bits_per_coded_sample) {
|
|
|
|
case 16:
|
|
|
|
avctx->pix_fmt = PIX_FMT_RGB555;
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
avctx->pix_fmt = PIX_FMT_BGR24;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n", avctx->bits_per_coded_sample);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-05-02 00:15:15 +00:00
|
|
|
avcodec_get_frame_defaults(&s->frame);
|
2005-04-03 05:02:08 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int aasc_decode_frame(AVCodecContext *avctx,
|
|
|
|
void *data, int *data_size,
|
2009-04-07 15:59:50 +00:00
|
|
|
AVPacket *avpkt)
|
2005-04-03 05:02:08 +00:00
|
|
|
{
|
2009-04-07 15:59:50 +00:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2007-04-08 20:24:16 +00:00
|
|
|
AascContext *s = avctx->priv_data;
|
2008-12-06 08:57:31 +00:00
|
|
|
int compr, i, stride;
|
2005-04-03 05:02:08 +00:00
|
|
|
|
2011-11-05 18:48:39 +00:00
|
|
|
s->frame.reference = 3;
|
2005-04-03 05:02:08 +00:00
|
|
|
s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
|
|
|
|
if (avctx->reget_buffer(avctx, &s->frame)) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-12-06 08:57:31 +00:00
|
|
|
compr = AV_RL32(buf);
|
|
|
|
buf += 4;
|
|
|
|
buf_size -= 4;
|
2012-05-16 09:51:26 +00:00
|
|
|
switch (avctx->codec_tag) {
|
|
|
|
case MKTAG('A', 'A', 'S', '4'):
|
|
|
|
bytestream2_init(&s->gb, buf - 4, buf_size + 4);
|
|
|
|
ff_msrle_decode(avctx, (AVPicture*)&s->frame, 8, &s->gb);
|
|
|
|
break;
|
|
|
|
case MKTAG('A', 'A', 'S', 'C'):
|
2008-12-06 08:57:31 +00:00
|
|
|
switch(compr){
|
|
|
|
case 0:
|
|
|
|
stride = (avctx->width * 3 + 3) & ~3;
|
|
|
|
for(i = avctx->height - 1; i >= 0; i--){
|
2011-12-13 14:45:04 +00:00
|
|
|
if(avctx->width*3 > buf_size){
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Next line is beyond buffer bounds\n");
|
|
|
|
break;
|
|
|
|
}
|
2008-12-06 08:57:31 +00:00
|
|
|
memcpy(s->frame.data[0] + i*s->frame.linesize[0], buf, avctx->width*3);
|
|
|
|
buf += stride;
|
2011-12-13 14:45:04 +00:00
|
|
|
buf_size -= stride;
|
2008-12-06 08:57:31 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
2012-05-08 13:18:33 +00:00
|
|
|
bytestream2_init(&s->gb, buf, buf_size);
|
2012-03-31 17:10:54 +00:00
|
|
|
ff_msrle_decode(avctx, (AVPicture*)&s->frame, 8, &s->gb);
|
2008-12-06 08:57:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unknown compression type %d\n", compr);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-05-16 09:51:26 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unknown FourCC: %X\n", avctx->codec_tag);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-04-03 05:02:08 +00:00
|
|
|
|
|
|
|
*data_size = sizeof(AVFrame);
|
|
|
|
*(AVFrame*)data = s->frame;
|
|
|
|
|
|
|
|
/* report that the buffer was completely consumed */
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int aasc_decode_end(AVCodecContext *avctx)
|
2005-04-03 05:02:08 +00:00
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
AascContext *s = avctx->priv_data;
|
2005-04-03 05:02:08 +00:00
|
|
|
|
|
|
|
/* release the last frame */
|
|
|
|
if (s->frame.data[0])
|
|
|
|
avctx->release_buffer(avctx, &s->frame);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_aasc_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "aasc",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.id = CODEC_ID_AASC,
|
|
|
|
.priv_data_size = sizeof(AascContext),
|
|
|
|
.init = aasc_decode_init,
|
|
|
|
.close = aasc_decode_end,
|
|
|
|
.decode = aasc_decode_frame,
|
|
|
|
.capabilities = CODEC_CAP_DR1,
|
2012-04-06 16:19:39 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Autodesk RLE"),
|
2005-04-03 05:02:08 +00:00
|
|
|
};
|