2003-10-01 04:39:38 +00:00
|
|
|
/*
|
|
|
|
* Micrsoft RLE Video Decoder
|
|
|
|
* Copyright (C) 2003 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
|
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
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg 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
|
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
|
2003-10-01 04:39:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file msrle.c
|
|
|
|
* MS RLE Video Decoder by Mike Melanson (melanson@pcisys.net)
|
|
|
|
* For more information about the MS RLE format, visit:
|
|
|
|
* http://www.pcisys.net/~melanson/codecs/
|
|
|
|
*
|
|
|
|
* The MS RLE decoder outputs PAL8 colorspace data.
|
|
|
|
*
|
|
|
|
* Note that this decoder expects the palette colors from the end of the
|
2003-11-02 21:57:55 +00:00
|
|
|
* BITMAPINFO header passed through palctrl.
|
2003-10-01 04:39:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "avcodec.h"
|
|
|
|
#include "dsputil.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;
|
|
|
|
AVFrame frame;
|
|
|
|
|
2008-02-01 03:26:31 +00:00
|
|
|
const unsigned char *buf;
|
2003-10-01 04:39:38 +00:00
|
|
|
int size;
|
|
|
|
|
|
|
|
} 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;
|
|
|
|
|
|
|
|
avctx->pix_fmt = PIX_FMT_PAL8;
|
2003-11-26 20:57:15 +00:00
|
|
|
s->frame.data[0] = NULL;
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int msrle_decode_frame(AVCodecContext *avctx,
|
|
|
|
void *data, int *data_size,
|
2008-02-01 03:26:31 +00:00
|
|
|
const uint8_t *buf, int buf_size)
|
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->buf = buf;
|
|
|
|
s->size = buf_size;
|
|
|
|
|
2003-10-31 22:56:16 +00:00
|
|
|
s->frame.reference = 1;
|
2003-11-26 20:57:15 +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");
|
2003-10-01 04:39:38 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-09-18 05:20:54 +00:00
|
|
|
/* make the palette available */
|
|
|
|
memcpy(s->frame.data[1], s->avctx->palctrl->palette, AVPALETTE_SIZE);
|
|
|
|
if (s->avctx->palctrl->palette_changed) {
|
|
|
|
s->frame.palette_has_changed = 1;
|
|
|
|
s->avctx->palctrl->palette_changed = 0;
|
2003-11-09 21:54:49 +00:00
|
|
|
}
|
2003-10-01 04:39:38 +00:00
|
|
|
|
2008-09-18 05:20:54 +00:00
|
|
|
ff_msrle_decode(avctx, &s->frame, avctx->bits_per_coded_sample, buf, buf_size);
|
|
|
|
|
2003-10-01 04:39:38 +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 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 */
|
2003-11-26 20:57:15 +00:00
|
|
|
if (s->frame.data[0])
|
|
|
|
avctx->release_buffer(avctx, &s->frame);
|
2003-10-01 04:39:38 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVCodec msrle_decoder = {
|
|
|
|
"msrle",
|
|
|
|
CODEC_TYPE_VIDEO,
|
|
|
|
CODEC_ID_MSRLE,
|
|
|
|
sizeof(MsrleContext),
|
|
|
|
msrle_decode_init,
|
|
|
|
NULL,
|
|
|
|
msrle_decode_end,
|
|
|
|
msrle_decode_frame,
|
2003-11-26 20:57:15 +00:00
|
|
|
CODEC_CAP_DR1,
|
2008-06-12 21:50:13 +00:00
|
|
|
.long_name= NULL_IF_CONFIG_SMALL("Microsoft RLE"),
|
2003-10-01 04:39:38 +00:00
|
|
|
};
|