2006-02-12 06:49:40 +00:00
|
|
|
/*
|
|
|
|
* American Laser Games MM Video Decoder
|
2008-07-08 12:44:08 +00:00
|
|
|
* Copyright (c) 2006,2008 Peter Ross
|
2006-02-12 06:49:40 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-02-12 06:49:40 +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.
|
2006-02-12 06:49:40 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-02-12 06:49:40 +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
|
2007-07-05 10:40:25 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2006-02-12 06:49:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2006-02-12 06:49:40 +00:00
|
|
|
* American Laser Games MM Video Decoder
|
2010-01-09 03:31:13 +00:00
|
|
|
* by Peter Ross (pross@xvid.org)
|
2006-02-12 06:49:40 +00:00
|
|
|
*
|
|
|
|
* The MM format was used by IBM-PC ports of ALG's "arcade shooter" games,
|
|
|
|
* including Mad Dog McCree and Crime Patrol.
|
|
|
|
*
|
|
|
|
* Technical details here:
|
|
|
|
* http://wiki.multimedia.cx/index.php?title=American_Laser_Games_MM
|
|
|
|
*/
|
|
|
|
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2006-02-12 06:49:40 +00:00
|
|
|
#include "avcodec.h"
|
2012-03-06 23:15:42 +00:00
|
|
|
#include "bytestream.h"
|
2012-11-21 20:34:46 +00:00
|
|
|
#include "internal.h"
|
2006-02-12 06:49:40 +00:00
|
|
|
|
|
|
|
#define MM_PREAMBLE_SIZE 6
|
|
|
|
|
|
|
|
#define MM_TYPE_INTER 0x5
|
|
|
|
#define MM_TYPE_INTRA 0x8
|
|
|
|
#define MM_TYPE_INTRA_HH 0xc
|
|
|
|
#define MM_TYPE_INTER_HH 0xd
|
|
|
|
#define MM_TYPE_INTRA_HHV 0xe
|
|
|
|
#define MM_TYPE_INTER_HHV 0xf
|
2008-07-08 12:44:08 +00:00
|
|
|
#define MM_TYPE_PALETTE 0x31
|
2006-02-12 06:49:40 +00:00
|
|
|
|
|
|
|
typedef struct MmContext {
|
|
|
|
AVCodecContext *avctx;
|
2013-11-09 09:14:46 +00:00
|
|
|
AVFrame *frame;
|
2014-10-08 02:12:26 +00:00
|
|
|
unsigned int palette[AVPALETTE_COUNT];
|
2012-03-06 23:15:42 +00:00
|
|
|
GetByteContext gb;
|
2006-02-12 06:49:40 +00:00
|
|
|
} MmContext;
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int mm_decode_init(AVCodecContext *avctx)
|
2006-02-12 06:49:40 +00:00
|
|
|
{
|
|
|
|
MmContext *s = avctx->priv_data;
|
|
|
|
|
|
|
|
s->avctx = avctx;
|
|
|
|
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8;
|
2006-02-12 06:49:40 +00:00
|
|
|
|
2014-12-14 20:01:59 +00:00
|
|
|
if (!avctx->width || !avctx->height ||
|
|
|
|
(avctx->width & 1) || (avctx->height & 1)) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Invalid video dimensions: %dx%d\n",
|
|
|
|
avctx->width, avctx->height);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
s->frame = av_frame_alloc();
|
|
|
|
if (!s->frame)
|
|
|
|
return AVERROR(ENOMEM);
|
2013-02-13 07:50:04 +00:00
|
|
|
|
2006-02-12 06:49:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-02 19:46:24 +00:00
|
|
|
static void mm_decode_pal(MmContext *s)
|
2008-07-08 12:44:08 +00:00
|
|
|
{
|
|
|
|
int i;
|
2012-03-06 23:15:42 +00:00
|
|
|
|
|
|
|
bytestream2_skip(&s->gb, 4);
|
|
|
|
for (i = 0; i < 128; i++) {
|
2012-10-14 01:17:13 +00:00
|
|
|
s->palette[i] = 0xFFU << 24 | bytestream2_get_be24(&s->gb);
|
2008-07-08 12:44:08 +00:00
|
|
|
s->palette[i+128] = s->palette[i]<<2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-10 12:16:33 +00:00
|
|
|
/**
|
|
|
|
* @param half_horiz Half horizontal resolution (0 or 1)
|
|
|
|
* @param half_vert Half vertical resolution (0 or 1)
|
|
|
|
*/
|
2012-03-06 23:15:42 +00:00
|
|
|
static int mm_decode_intra(MmContext * s, int half_horiz, int half_vert)
|
2006-02-12 06:49:40 +00:00
|
|
|
{
|
2012-04-19 12:49:51 +00:00
|
|
|
int x = 0, y = 0;
|
2006-02-12 06:49:40 +00:00
|
|
|
|
2012-03-06 23:15:42 +00:00
|
|
|
while (bytestream2_get_bytes_left(&s->gb) > 0) {
|
2006-02-12 06:49:40 +00:00
|
|
|
int run_length, color;
|
|
|
|
|
2011-01-10 12:23:03 +00:00
|
|
|
if (y >= s->avctx->height)
|
2012-03-06 23:15:42 +00:00
|
|
|
return 0;
|
2011-01-10 12:23:03 +00:00
|
|
|
|
2012-03-06 23:15:42 +00:00
|
|
|
color = bytestream2_get_byte(&s->gb);
|
|
|
|
if (color & 0x80) {
|
2006-02-12 06:49:40 +00:00
|
|
|
run_length = 1;
|
|
|
|
}else{
|
2012-03-06 23:15:42 +00:00
|
|
|
run_length = (color & 0x7f) + 2;
|
|
|
|
color = bytestream2_get_byte(&s->gb);
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (half_horiz)
|
|
|
|
run_length *=2;
|
|
|
|
|
2013-05-02 20:06:03 +00:00
|
|
|
if (run_length > s->avctx->width - x)
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
|
2006-02-12 06:49:40 +00:00
|
|
|
if (color) {
|
2013-11-09 09:14:46 +00:00
|
|
|
memset(s->frame->data[0] + y*s->frame->linesize[0] + x, color, run_length);
|
2014-10-03 12:45:04 +00:00
|
|
|
if (half_vert && y + half_vert < s->avctx->height)
|
2013-11-09 09:14:46 +00:00
|
|
|
memset(s->frame->data[0] + (y+1)*s->frame->linesize[0] + x, color, run_length);
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
x+= run_length;
|
|
|
|
|
|
|
|
if (x >= s->avctx->width) {
|
|
|
|
x=0;
|
2011-01-10 12:16:33 +00:00
|
|
|
y += 1 + half_vert;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-06 23:15:42 +00:00
|
|
|
|
|
|
|
return 0;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
|
2012-11-21 08:53:08 +00:00
|
|
|
/**
|
2011-01-10 12:16:33 +00:00
|
|
|
* @param half_horiz Half horizontal resolution (0 or 1)
|
|
|
|
* @param half_vert Half vertical resolution (0 or 1)
|
|
|
|
*/
|
2012-03-06 23:15:42 +00:00
|
|
|
static int mm_decode_inter(MmContext * s, int half_horiz, int half_vert)
|
2006-02-12 06:49:40 +00:00
|
|
|
{
|
2013-10-26 23:54:47 +00:00
|
|
|
int data_off = bytestream2_get_le16(&s->gb);
|
|
|
|
int y = 0;
|
2012-03-06 23:15:42 +00:00
|
|
|
GetByteContext data_ptr;
|
2012-03-04 07:14:07 +00:00
|
|
|
|
2012-03-06 23:15:42 +00:00
|
|
|
if (bytestream2_get_bytes_left(&s->gb) < data_off)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2012-03-04 07:14:07 +00:00
|
|
|
|
2012-03-06 23:15:42 +00:00
|
|
|
bytestream2_init(&data_ptr, s->gb.buffer + data_off, bytestream2_get_bytes_left(&s->gb) - data_off);
|
|
|
|
while (s->gb.buffer < data_ptr.buffer_start) {
|
2006-02-12 06:49:40 +00:00
|
|
|
int i, j;
|
2012-03-06 23:15:42 +00:00
|
|
|
int length = bytestream2_get_byte(&s->gb);
|
|
|
|
int x = bytestream2_get_byte(&s->gb) + ((length & 0x80) << 1);
|
|
|
|
length &= 0x7F;
|
2006-02-12 06:49:40 +00:00
|
|
|
|
|
|
|
if (length==0) {
|
|
|
|
y += x;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-01-10 12:23:03 +00:00
|
|
|
if (y + half_vert >= s->avctx->height)
|
2012-03-06 23:15:42 +00:00
|
|
|
return 0;
|
2011-01-10 12:23:03 +00:00
|
|
|
|
2006-02-12 06:49:40 +00:00
|
|
|
for(i=0; i<length; i++) {
|
2012-03-06 23:15:42 +00:00
|
|
|
int replace_array = bytestream2_get_byte(&s->gb);
|
2006-02-12 06:49:40 +00:00
|
|
|
for(j=0; j<8; j++) {
|
2012-03-06 23:15:42 +00:00
|
|
|
int replace = (replace_array >> (7-j)) & 1;
|
2013-05-02 19:52:08 +00:00
|
|
|
if (x + half_horiz >= s->avctx->width)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2006-02-12 06:49:40 +00:00
|
|
|
if (replace) {
|
2012-03-06 23:15:42 +00:00
|
|
|
int color = bytestream2_get_byte(&data_ptr);
|
2013-11-09 09:14:46 +00:00
|
|
|
s->frame->data[0][y*s->frame->linesize[0] + x] = color;
|
2006-02-12 06:49:40 +00:00
|
|
|
if (half_horiz)
|
2013-11-09 09:14:46 +00:00
|
|
|
s->frame->data[0][y*s->frame->linesize[0] + x + 1] = color;
|
2006-02-12 06:49:40 +00:00
|
|
|
if (half_vert) {
|
2013-11-09 09:14:46 +00:00
|
|
|
s->frame->data[0][(y+1)*s->frame->linesize[0] + x] = color;
|
2006-02-12 06:49:40 +00:00
|
|
|
if (half_horiz)
|
2013-11-09 09:14:46 +00:00
|
|
|
s->frame->data[0][(y+1)*s->frame->linesize[0] + x + 1] = color;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-10 12:16:33 +00:00
|
|
|
x += 1 + half_horiz;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-10 12:16:33 +00:00
|
|
|
y += 1 + half_vert;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
2012-03-06 23:15:42 +00:00
|
|
|
|
|
|
|
return 0;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int mm_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)
|
2006-02-12 06:49:40 +00:00
|
|
|
{
|
2009-04-07 15:59:50 +00:00
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2006-02-12 06:49:40 +00:00
|
|
|
MmContext *s = avctx->priv_data;
|
2012-03-06 23:15:42 +00:00
|
|
|
int type, res;
|
2006-02-12 06:49:40 +00:00
|
|
|
|
2012-03-06 23:15:42 +00:00
|
|
|
if (buf_size < MM_PREAMBLE_SIZE)
|
|
|
|
return AVERROR_INVALIDDATA;
|
2007-01-19 22:12:59 +00:00
|
|
|
type = AV_RL16(&buf[0]);
|
2006-02-12 06:49:40 +00:00
|
|
|
buf += MM_PREAMBLE_SIZE;
|
|
|
|
buf_size -= MM_PREAMBLE_SIZE;
|
2012-03-06 23:15:42 +00:00
|
|
|
bytestream2_init(&s->gb, buf, buf_size);
|
2006-02-12 06:49:40 +00:00
|
|
|
|
2013-11-17 00:48:57 +00:00
|
|
|
if ((res = ff_reget_buffer(avctx, s->frame)) < 0)
|
2012-07-25 06:43:56 +00:00
|
|
|
return res;
|
2011-03-13 05:21:52 +00:00
|
|
|
|
2006-02-12 06:49:40 +00:00
|
|
|
switch(type) {
|
2014-08-02 19:46:24 +00:00
|
|
|
case MM_TYPE_PALETTE : mm_decode_pal(s); return avpkt->size;
|
2012-03-06 23:15:42 +00:00
|
|
|
case MM_TYPE_INTRA : res = mm_decode_intra(s, 0, 0); break;
|
|
|
|
case MM_TYPE_INTRA_HH : res = mm_decode_intra(s, 1, 0); break;
|
|
|
|
case MM_TYPE_INTRA_HHV : res = mm_decode_intra(s, 1, 1); break;
|
|
|
|
case MM_TYPE_INTER : res = mm_decode_inter(s, 0, 0); break;
|
|
|
|
case MM_TYPE_INTER_HH : res = mm_decode_inter(s, 1, 0); break;
|
|
|
|
case MM_TYPE_INTER_HHV : res = mm_decode_inter(s, 1, 1); break;
|
|
|
|
default:
|
|
|
|
res = AVERROR_INVALIDDATA;
|
|
|
|
break;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
2012-03-06 23:15:42 +00:00
|
|
|
if (res < 0)
|
|
|
|
return res;
|
2006-02-12 06:49:40 +00:00
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
memcpy(s->frame->data[1], s->palette, AVPALETTE_SIZE);
|
2008-07-08 12:44:08 +00:00
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
if ((res = av_frame_ref(data, s->frame)) < 0)
|
2012-11-21 20:34:46 +00:00
|
|
|
return res;
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
*got_frame = 1;
|
2006-02-12 06:49:40 +00:00
|
|
|
|
2012-07-28 17:36:21 +00:00
|
|
|
return avpkt->size;
|
2006-02-12 06:49:40 +00:00
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int mm_decode_end(AVCodecContext *avctx)
|
2006-02-12 06:49:40 +00:00
|
|
|
{
|
|
|
|
MmContext *s = avctx->priv_data;
|
|
|
|
|
2013-11-09 09:14:46 +00:00
|
|
|
av_frame_free(&s->frame);
|
2006-02-12 06:49:40 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_mmvideo_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "mmvideo",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("American Laser Games MM Video"),
|
2011-07-17 10:54:31 +00:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_MMVIDEO,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(MmContext),
|
|
|
|
.init = mm_decode_init,
|
|
|
|
.close = mm_decode_end,
|
|
|
|
.decode = mm_decode_frame,
|
2015-07-07 00:41:27 +00:00
|
|
|
.capabilities = AV_CODEC_CAP_DR1,
|
2006-02-12 06:49:40 +00:00
|
|
|
};
|