2005-04-03 08:02:08 +03:00
|
|
|
/*
|
2008-04-26 07:14:33 +03:00
|
|
|
* Autodesk RLE Decoder
|
2016-04-27 19:45:23 +02:00
|
|
|
* Copyright (C) 2005 The FFmpeg project
|
2005-04-03 08:02:08 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2005-04-03 08:02:08 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2005-04-03 08:02:08 +03:00
|
|
|
*
|
2006-10-07 18:30:46 +03:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2005-04-03 08:02:08 +03: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 18:30:46 +03:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-04-03 08:02:08 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 17:45:34 +03:00
|
|
|
* @file
|
2008-04-26 07:14:33 +03:00
|
|
|
* Autodesk RLE Video Decoder by Konstantin Shishkov
|
2005-04-03 08:02:08 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "avcodec.h"
|
2012-11-21 23:34:46 +03:00
|
|
|
#include "internal.h"
|
2008-09-18 08:20:54 +03:00
|
|
|
#include "msrledec.h"
|
2005-04-03 08:02:08 +03:00
|
|
|
|
|
|
|
typedef struct AascContext {
|
|
|
|
AVCodecContext *avctx;
|
2012-03-31 20:10:54 +03:00
|
|
|
GetByteContext gb;
|
2012-11-21 23:34:46 +03:00
|
|
|
AVFrame *frame;
|
2012-08-09 02:59:33 +03:00
|
|
|
|
|
|
|
uint32_t palette[AVPALETTE_COUNT];
|
|
|
|
int palette_size;
|
2005-04-03 08:02:08 +03:00
|
|
|
} AascContext;
|
|
|
|
|
2008-03-21 05:11:20 +02:00
|
|
|
static av_cold int aasc_decode_init(AVCodecContext *avctx)
|
2005-04-03 08:02:08 +03:00
|
|
|
{
|
2007-04-08 23:24:16 +03:00
|
|
|
AascContext *s = avctx->priv_data;
|
2012-08-09 02:59:33 +03:00
|
|
|
uint8_t *ptr;
|
|
|
|
int i;
|
2005-04-03 08:02:08 +03:00
|
|
|
|
|
|
|
s->avctx = avctx;
|
2012-05-19 03:07:45 +03:00
|
|
|
switch (avctx->bits_per_coded_sample) {
|
2012-08-09 02:59:33 +03:00
|
|
|
case 8:
|
2012-10-08 21:54:00 +03:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8;
|
2012-08-09 02:59:33 +03:00
|
|
|
|
|
|
|
ptr = avctx->extradata;
|
|
|
|
s->palette_size = FFMIN(avctx->extradata_size, AVPALETTE_SIZE);
|
|
|
|
for (i = 0; i < s->palette_size / 4; i++) {
|
|
|
|
s->palette[i] = 0xFFU << 24 | AV_RL32(ptr);
|
|
|
|
ptr += 4;
|
|
|
|
}
|
|
|
|
break;
|
2012-05-19 03:07:45 +03:00
|
|
|
case 16:
|
2013-01-28 14:29:37 +03:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB555LE;
|
2012-05-19 03:07:45 +03:00
|
|
|
break;
|
|
|
|
case 24:
|
2012-10-08 21:54:00 +03:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_BGR24;
|
2012-05-19 03:07:45 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unsupported bit depth: %d\n", avctx->bits_per_coded_sample);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-04-03 08:02:08 +03:00
|
|
|
|
2012-11-21 23:34:46 +03:00
|
|
|
s->frame = av_frame_alloc();
|
|
|
|
if (!s->frame)
|
|
|
|
return AVERROR(ENOMEM);
|
2005-04-03 08:02:08 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int aasc_decode_frame(AVCodecContext *avctx,
|
2012-11-13 21:35:22 +03:00
|
|
|
void *data, int *got_frame,
|
2009-04-07 18:59:50 +03:00
|
|
|
AVPacket *avpkt)
|
2005-04-03 08:02:08 +03:00
|
|
|
{
|
2009-04-07 18:59:50 +03:00
|
|
|
const uint8_t *buf = avpkt->data;
|
2012-11-14 11:09:43 +03:00
|
|
|
int buf_size = avpkt->size;
|
|
|
|
AascContext *s = avctx->priv_data;
|
2013-01-07 01:48:48 +03:00
|
|
|
int compr, i, stride, psize, ret;
|
2005-04-03 08:02:08 +03:00
|
|
|
|
2012-11-14 05:03:04 +03:00
|
|
|
if (buf_size < 4) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "frame too short\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
lavc: factorize ff_{thread_,re,}get_buffer error messages.
Coccinelle profile used:
@@
expression r, ctx, f, loglevel, str, flags;
@@
-if ((r = ff_get_buffer(ctx, f, flags)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_get_buffer(ctx, f, flags)) < 0)
+ return r;
@@
expression r, ctx, f, loglevel, str;
@@
-if ((r = ff_reget_buffer(ctx, f)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_reget_buffer(ctx, f)) < 0)
+ return r;
@@
expression r, ctx, f, loglevel, str, flags;
@@
-if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0)
+ return r;
...along with some manual patches for the remaining ones.
2013-03-12 10:41:53 +03:00
|
|
|
if ((ret = ff_reget_buffer(avctx, s->frame)) < 0)
|
2012-11-14 11:11:07 +03:00
|
|
|
return ret;
|
2005-04-03 08:02:08 +03:00
|
|
|
|
2012-11-14 11:09:43 +03:00
|
|
|
compr = AV_RL32(buf);
|
|
|
|
buf += 4;
|
2008-12-06 10:57:31 +02:00
|
|
|
buf_size -= 4;
|
2012-08-08 17:10:06 +03:00
|
|
|
psize = avctx->bits_per_coded_sample / 8;
|
2012-05-16 12:51:26 +03:00
|
|
|
switch (avctx->codec_tag) {
|
|
|
|
case MKTAG('A', 'A', 'S', '4'):
|
|
|
|
bytestream2_init(&s->gb, buf - 4, buf_size + 4);
|
2015-10-22 19:42:29 +02:00
|
|
|
ff_msrle_decode(avctx, s->frame, 8, &s->gb);
|
2012-05-16 12:51:26 +03:00
|
|
|
break;
|
|
|
|
case MKTAG('A', 'A', 'S', 'C'):
|
2012-11-14 11:09:43 +03:00
|
|
|
switch (compr) {
|
2008-12-06 10:57:31 +02:00
|
|
|
case 0:
|
2012-08-08 17:10:06 +03:00
|
|
|
stride = (avctx->width * psize + psize) & ~psize;
|
2013-07-07 13:31:19 +03:00
|
|
|
if (buf_size < stride * avctx->height)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2012-11-14 11:09:43 +03:00
|
|
|
for (i = avctx->height - 1; i >= 0; i--) {
|
2013-03-12 05:20:18 +03:00
|
|
|
memcpy(s->frame->data[0] + i * s->frame->linesize[0], buf, avctx->width * psize);
|
2008-12-06 10:57:31 +02:00
|
|
|
buf += stride;
|
2011-12-13 17:45:04 +03:00
|
|
|
buf_size -= stride;
|
2008-12-06 10:57:31 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
2012-05-08 16:18:33 +03:00
|
|
|
bytestream2_init(&s->gb, buf, buf_size);
|
2015-10-14 11:33:18 +02:00
|
|
|
ff_msrle_decode(avctx, s->frame, 8, &s->gb);
|
2008-12-06 10:57:31 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unknown compression type %d\n", compr);
|
2012-11-14 11:11:07 +03:00
|
|
|
return AVERROR_INVALIDDATA;
|
2008-12-06 10:57:31 +02:00
|
|
|
}
|
2012-05-16 12:51:26 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unknown FourCC: %X\n", avctx->codec_tag);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-04-03 08:02:08 +03:00
|
|
|
|
2012-10-08 21:54:00 +03:00
|
|
|
if (avctx->pix_fmt == AV_PIX_FMT_PAL8)
|
2013-03-12 05:20:18 +03:00
|
|
|
memcpy(s->frame->data[1], s->palette, s->palette_size);
|
2012-08-09 02:59:33 +03:00
|
|
|
|
2012-11-13 21:35:22 +03:00
|
|
|
*got_frame = 1;
|
2012-11-21 23:34:46 +03:00
|
|
|
if ((ret = av_frame_ref(data, s->frame)) < 0)
|
|
|
|
return ret;
|
2005-04-03 08:02:08 +03:00
|
|
|
|
|
|
|
/* report that the buffer was completely consumed */
|
2015-04-16 19:12:02 +02:00
|
|
|
return avpkt->size;
|
2005-04-03 08:02:08 +03:00
|
|
|
}
|
|
|
|
|
2008-03-21 05:11:20 +02:00
|
|
|
static av_cold int aasc_decode_end(AVCodecContext *avctx)
|
2005-04-03 08:02:08 +03:00
|
|
|
{
|
2007-04-08 23:24:16 +03:00
|
|
|
AascContext *s = avctx->priv_data;
|
2005-04-03 08:02:08 +03:00
|
|
|
|
2012-11-21 23:34:46 +03:00
|
|
|
av_frame_free(&s->frame);
|
2005-04-03 08:02:08 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 23:40:11 +02:00
|
|
|
AVCodec ff_aasc_decoder = {
|
2011-07-17 13:54:31 +03:00
|
|
|
.name = "aasc",
|
2013-10-03 23:57:53 +03:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Autodesk RLE"),
|
2011-07-17 13:54:31 +03:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 12:11:04 +03:00
|
|
|
.id = AV_CODEC_ID_AASC,
|
2011-07-17 13:54:31 +03:00
|
|
|
.priv_data_size = sizeof(AascContext),
|
|
|
|
.init = aasc_decode_init,
|
|
|
|
.close = aasc_decode_end,
|
|
|
|
.decode = aasc_decode_frame,
|
2015-07-07 02:41:27 +02:00
|
|
|
.capabilities = AV_CODEC_CAP_DR1,
|
2005-04-03 08:02:08 +03:00
|
|
|
};
|