2003-10-01 04:39:38 +00:00
|
|
|
/*
|
2011-12-12 20:21:24 +00:00
|
|
|
* Microsoft RLE video decoder
|
2003-10-01 04:39:38 +00:00
|
|
|
* Copyright (C) 2003 the ffmpeg project
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2003-10-01 04:39:38 +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.
|
2003-10-01 04:39:38 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2003-10-01 04:39:38 +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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; 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
|
2003-10-01 04:39:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2011-12-12 20:21:24 +00:00
|
|
|
* MS RLE video decoder by Mike Melanson (melanson@pcisys.net)
|
2003-10-01 04:39:38 +00:00
|
|
|
* For more information about the MS RLE format, visit:
|
|
|
|
* http://www.pcisys.net/~melanson/codecs/
|
|
|
|
*
|
|
|
|
* The MS RLE decoder outputs PAL8 colorspace data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "avcodec.h"
|
2012-11-21 20:34:46 +00:00
|
|
|
#include "internal.h"
|
2008-09-18 05:20:54 +00:00
|
|
|
#include "msrledec.h"
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
typedef struct MsrleContext {
|
|
|
|
AVCodecContext *avctx;
|
2013-11-09 09:14:46 +00:00
|
|
|
AVFrame *frame;
|
2003-10-01 04:39:38 +00:00
|
|
|
|
2012-03-31 17:10:54 +00:00
|
|
|
GetByteContext gb;
|
2008-02-01 03:26:31 +00:00
|
|
|
const unsigned char *buf;
|
2003-10-01 04:39:38 +00:00
|
|
|
int size;
|
|
|
|
|
2011-04-09 13:49:51 +00:00
|
|
|
uint32_t pal[256];
|
2003-10-01 04:39:38 +00:00
|
|
|
} MsrleContext;
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int msrle_decode_init(AVCodecContext *avctx)
|
2003-10-01 04:39:38 +00:00
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
MsrleContext *s = avctx->priv_data;
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
s->avctx = avctx;
|
|
|
|
|
2009-05-27 21:45:25 +00:00
|
|
|
switch (avctx->bits_per_coded_sample) {
|
|
|
|
case 4:
|
|
|
|
case 8:
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8;
|
2009-05-27 21:45:25 +00:00
|
|
|
break;
|
|
|
|
case 24:
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_BGR24;
|
2009-05-27 21:45:25 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "unsupported bits per sample\n");
|
2012-11-17 16:48:38 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2009-05-27 21:45:25 +00:00
|
|
|
}
|
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
s->frame = av_frame_alloc();
|
|
|
|
if (!s->frame)
|
|
|
|
return AVERROR(ENOMEM);
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int msrle_decode_frame(AVCodecContext *avctx,
|
2012-11-13 18:35:22 +00:00
|
|
|
void *data, int *got_frame,
|
2009-04-07 15:59:50 +00:00
|
|
|
AVPacket *avpkt)
|
2003-10-01 04:39:38 +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
|
|
|
MsrleContext *s = avctx->priv_data;
|
2009-05-27 21:45:25 +00:00
|
|
|
int istride = FFALIGN(avctx->width*avctx->bits_per_coded_sample, 32) / 8;
|
2012-11-17 16:48:38 +00:00
|
|
|
int ret;
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
s->buf = buf;
|
|
|
|
s->size = buf_size;
|
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
if ((ret = ff_reget_buffer(avctx, s->frame)) < 0) {
|
2003-11-26 20:57:15 +00:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
2012-11-17 16:48:38 +00:00
|
|
|
return ret;
|
2003-10-01 04:39:38 +00:00
|
|
|
}
|
|
|
|
|
2011-04-09 13:49:51 +00:00
|
|
|
if (avctx->bits_per_coded_sample <= 8) {
|
|
|
|
const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL);
|
|
|
|
|
|
|
|
if (pal) {
|
2013-11-09 09:14:46 +00:00
|
|
|
s->frame->palette_has_changed = 1;
|
2011-04-09 13:49:51 +00:00
|
|
|
memcpy(s->pal, pal, AVPALETTE_SIZE);
|
2009-05-10 19:11:06 +00:00
|
|
|
}
|
2011-04-09 13:49:51 +00:00
|
|
|
|
|
|
|
/* make the palette available */
|
2013-11-09 09:14:46 +00:00
|
|
|
memcpy(s->frame->data[1], s->pal, AVPALETTE_SIZE);
|
2009-05-10 19:10:37 +00:00
|
|
|
}
|
2003-10-01 04:39:38 +00:00
|
|
|
|
2009-05-27 21:45:25 +00:00
|
|
|
/* FIXME how to correctly detect RLE ??? */
|
|
|
|
if (avctx->height * istride == avpkt->size) { /* assume uncompressed */
|
|
|
|
int linesize = avctx->width * avctx->bits_per_coded_sample / 8;
|
2013-11-09 09:14:46 +00:00
|
|
|
uint8_t *ptr = s->frame->data[0];
|
2009-05-27 21:45:25 +00:00
|
|
|
uint8_t *buf = avpkt->data + (avctx->height-1)*istride;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < avctx->height; i++) {
|
|
|
|
if (avctx->bits_per_coded_sample == 4) {
|
|
|
|
for (j = 0; j < avctx->width - 1; j += 2) {
|
|
|
|
ptr[j+0] = buf[j>>1] >> 4;
|
|
|
|
ptr[j+1] = buf[j>>1] & 0xF;
|
|
|
|
}
|
|
|
|
if (avctx->width & 1)
|
|
|
|
ptr[j+0] = buf[j>>1] >> 4;
|
|
|
|
} else {
|
|
|
|
memcpy(ptr, buf, linesize);
|
|
|
|
}
|
|
|
|
buf -= istride;
|
2013-11-09 09:14:46 +00:00
|
|
|
ptr += s->frame->linesize[0];
|
2009-05-27 21:45:25 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-03-31 17:10:54 +00:00
|
|
|
bytestream2_init(&s->gb, buf, buf_size);
|
2013-11-09 09:14:46 +00:00
|
|
|
ff_msrle_decode(avctx, (AVPicture*)s->frame, avctx->bits_per_coded_sample, &s->gb);
|
2009-05-27 21:45:25 +00:00
|
|
|
}
|
2008-09-18 05:20:54 +00:00
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
if ((ret = av_frame_ref(data, s->frame)) < 0)
|
2012-11-21 20:34:46 +00:00
|
|
|
return ret;
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
/* report that the buffer was completely consumed */
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int msrle_decode_end(AVCodecContext *avctx)
|
2003-10-01 04:39:38 +00:00
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
MsrleContext *s = avctx->priv_data;
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
/* release the last frame */
|
2013-11-09 09:14:46 +00:00
|
|
|
av_frame_free(&s->frame);
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_msrle_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "msrle",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Microsoft RLE"),
|
2011-07-17 10:54:31 +00:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_MSRLE,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(MsrleContext),
|
|
|
|
.init = msrle_decode_init,
|
|
|
|
.close = msrle_decode_end,
|
|
|
|
.decode = msrle_decode_frame,
|
|
|
|
.capabilities = CODEC_CAP_DR1,
|
2003-10-01 04:39:38 +00:00
|
|
|
};
|