FFmpeg
Loading...
Searching...
No Matches
mmvideo.c
Go to the documentation of this file.
1/*
2 * American Laser Games MM Video Decoder
3 * Copyright (c) 2006,2008 Peter Ross
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
23 * @file
24 * American Laser Games MM Video Decoder
25 * by Peter Ross (pross@xvid.org)
26 *
27 * The MM format was used by IBM-PC ports of ALG's "arcade shooter" games,
28 * including Mad Dog McCree and Crime Patrol.
29 *
30 * Technical details here:
31 * http://wiki.multimedia.cx/index.php?title=American_Laser_Games_MM
32 */
33
35#include "avcodec.h"
36#include "bytestream.h"
37#include "codec_internal.h"
38#include "decode.h"
39
40#define MM_PREAMBLE_SIZE 6
41
42#define MM_TYPE_RAW 0x2
43#define MM_TYPE_INTER 0x5
44#define MM_TYPE_INTRA 0x8
45#define MM_TYPE_INTRA_HH 0xc
46#define MM_TYPE_INTER_HH 0xd
47#define MM_TYPE_INTRA_HHV 0xe
48#define MM_TYPE_INTER_HHV 0xf
49#define MM_TYPE_PALETTE 0x31
50
57
59{
60 MmContext *s = avctx->priv_data;
61
62 s->avctx = avctx;
63
64 avctx->pix_fmt = AV_PIX_FMT_PAL8;
65
66 if (!avctx->width || !avctx->height ||
67 (avctx->width & 1) || (avctx->height & 1)) {
68 av_log(avctx, AV_LOG_ERROR, "Invalid video dimensions: %dx%d\n",
69 avctx->width, avctx->height);
70 return AVERROR(EINVAL);
71 }
72
73 s->frame = av_frame_alloc();
74 if (!s->frame)
75 return AVERROR(ENOMEM);
76
77 return 0;
78}
79
81{
82 if (bytestream2_get_bytes_left(&s->gb) < s->avctx->width * s->avctx->height)
84 for (int y = 0; y < s->avctx->height; y++)
85 bytestream2_get_buffer(&s->gb, s->frame->data[0] + y*s->frame->linesize[0], s->avctx->width);
86 return 0;
87}
88
90{
91 int start = bytestream2_get_le16(&s->gb);
92 int count = bytestream2_get_le16(&s->gb);
93 for (int i = 0; i < count; i++)
94 s->palette[(start+i)&0xFF] = 0xFFU << 24 | (bytestream2_get_be24(&s->gb) << 2);
95}
96
97/**
98 * @param half_horiz Half horizontal resolution (0 or 1)
99 * @param half_vert Half vertical resolution (0 or 1)
100 */
101static int mm_decode_intra(MmContext * s, int half_horiz, int half_vert)
102{
103 int x = 0, y = 0;
104
105 while (bytestream2_get_bytes_left(&s->gb) > 0) {
106 int run_length, color;
107
108 if (y >= s->avctx->height)
109 return 0;
110
111 color = bytestream2_get_byte(&s->gb);
112 if (color & 0x80) {
113 run_length = 1;
114 }else{
115 run_length = (color & 0x7f) + 2;
116 color = bytestream2_get_byte(&s->gb);
117 }
118
119 if (half_horiz)
120 run_length *=2;
121
122 if (run_length > s->avctx->width - x)
123 return AVERROR_INVALIDDATA;
124
125 if (color) {
126 memset(s->frame->data[0] + y*s->frame->linesize[0] + x, color, run_length);
127 if (half_vert && y + half_vert < s->avctx->height)
128 memset(s->frame->data[0] + (y+1)*s->frame->linesize[0] + x, color, run_length);
129 }
130 x+= run_length;
131
132 if (x >= s->avctx->width) {
133 x=0;
134 y += 1 + half_vert;
135 }
136 }
137
138 return 0;
139}
140
141/**
142 * @param half_horiz Half horizontal resolution (0 or 1)
143 * @param half_vert Half vertical resolution (0 or 1)
144 */
145static int mm_decode_inter(MmContext * s, int half_horiz, int half_vert)
146{
147 int data_off = bytestream2_get_le16(&s->gb);
148 int y = 0;
149 GetByteContext data_ptr;
150
151 if (bytestream2_get_bytes_left(&s->gb) < data_off)
152 return AVERROR_INVALIDDATA;
153
154 bytestream2_init(&data_ptr, s->gb.buffer + data_off, bytestream2_get_bytes_left(&s->gb) - data_off);
155 while (s->gb.buffer < data_ptr.buffer_start) {
156 int i, j;
157 int length = bytestream2_get_byte(&s->gb);
158 int x = bytestream2_get_byte(&s->gb) + ((length & 0x80) << 1);
159 length &= 0x7F;
160
161 if (length==0) {
162 y += x;
163 continue;
164 }
165
166 if (y + half_vert >= s->avctx->height)
167 return 0;
168
169 for(i=0; i<length; i++) {
170 int replace_array = bytestream2_get_byte(&s->gb);
171 for(j=0; j<8; j++) {
172 int replace = (replace_array >> (7-j)) & 1;
173 if (x + half_horiz >= s->avctx->width)
174 break;
175 if (replace) {
176 int color = bytestream2_get_byte(&data_ptr);
177 s->frame->data[0][y*s->frame->linesize[0] + x] = color;
178 if (half_horiz)
179 s->frame->data[0][y*s->frame->linesize[0] + x + 1] = color;
180 if (half_vert) {
181 s->frame->data[0][(y+1)*s->frame->linesize[0] + x] = color;
182 if (half_horiz)
183 s->frame->data[0][(y+1)*s->frame->linesize[0] + x + 1] = color;
184 }
185 }
186 x += 1 + half_horiz;
187 }
188 }
189
190 y += 1 + half_vert;
191 }
192
193 return 0;
194}
195
196static int mm_decode_frame(AVCodecContext *avctx, AVFrame *rframe,
197 int *got_frame, AVPacket *avpkt)
198{
199 const uint8_t *buf = avpkt->data;
200 int buf_size = avpkt->size;
201 MmContext *s = avctx->priv_data;
202 int type, res;
203
204 if (buf_size < MM_PREAMBLE_SIZE)
205 return AVERROR_INVALIDDATA;
206 type = AV_RL16(&buf[0]);
207 buf += MM_PREAMBLE_SIZE;
208 buf_size -= MM_PREAMBLE_SIZE;
209 bytestream2_init(&s->gb, buf, buf_size);
210
211 if ((res = ff_reget_buffer(avctx, s->frame, 0)) < 0)
212 return res;
213
214 switch(type) {
215 case MM_TYPE_RAW : res = mm_decode_raw(s); break;
216 case MM_TYPE_PALETTE : mm_decode_pal(s); return avpkt->size;
217 case MM_TYPE_INTRA : res = mm_decode_intra(s, 0, 0); break;
218 case MM_TYPE_INTRA_HH : res = mm_decode_intra(s, 1, 0); break;
219 case MM_TYPE_INTRA_HHV : res = mm_decode_intra(s, 1, 1); break;
220 case MM_TYPE_INTER : res = mm_decode_inter(s, 0, 0); break;
221 case MM_TYPE_INTER_HH : res = mm_decode_inter(s, 1, 0); break;
222 case MM_TYPE_INTER_HHV : res = mm_decode_inter(s, 1, 1); break;
223 default:
225 break;
226 }
227 if (res < 0)
228 return res;
229
230 memcpy(s->frame->data[1], s->palette, AVPALETTE_SIZE);
231
232 if ((res = av_frame_ref(rframe, s->frame)) < 0)
233 return res;
234
235 *got_frame = 1;
236
237 return avpkt->size;
238}
239
241{
242 MmContext *s = avctx->priv_data;
243
244 av_frame_free(&s->frame);
245
246 return 0;
247}
248
250 .p.name = "mmvideo",
251 CODEC_LONG_NAME("American Laser Games MM Video"),
252 .p.type = AVMEDIA_TYPE_VIDEO,
253 .p.id = AV_CODEC_ID_MMVIDEO,
254 .priv_data_size = sizeof(MmContext),
258 .p.capabilities = AV_CODEC_CAP_DR1,
259};
const FFCodec ff_mmvideo_decoder
Definition mmvideo.c:249
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
Libavcodec external API header.
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition bytestream.h:267
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition bytestream.h:158
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Identical in function to ff_get_buffer(), except it reuses the existing buffer if available.
Definition decode.c:1906
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_MMVIDEO
Definition codec_id.h:130
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition frame.c:278
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition frame.c:52
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
cl_device_type type
#define AV_RL16(p)
#define av_cold
Definition attributes.h:117
#define MM_TYPE_INTRA_HHV
Definition mmvideo.c:47
#define MM_PREAMBLE_SIZE
Definition mmvideo.c:40
static void mm_decode_pal(MmContext *s)
Definition mmvideo.c:89
#define MM_TYPE_INTER
Definition mmvideo.c:43
static av_cold int mm_decode_init(AVCodecContext *avctx)
Definition mmvideo.c:58
static av_cold int mm_decode_end(AVCodecContext *avctx)
Definition mmvideo.c:240
#define MM_TYPE_PALETTE
Definition mmvideo.c:49
#define MM_TYPE_INTRA
Definition mmvideo.c:44
#define MM_TYPE_INTRA_HH
Definition mmvideo.c:45
#define MM_TYPE_INTER_HHV
Definition mmvideo.c:48
static int mm_decode_inter(MmContext *s, int half_horiz, int half_vert)
Definition mmvideo.c:145
static int mm_decode_raw(MmContext *s)
Definition mmvideo.c:80
#define MM_TYPE_RAW
Definition mmvideo.c:42
static int mm_decode_frame(AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
Definition mmvideo.c:196
#define MM_TYPE_INTER_HH
Definition mmvideo.c:46
static int mm_decode_intra(MmContext *s, int half_horiz, int half_vert)
Definition mmvideo.c:101
static uint8_t half_vert(BlockXY bxy)
Definition mobiclip.c:574
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
#define AVPALETTE_COUNT
Definition pixfmt.h:33
#define AVPALETTE_SIZE
Definition pixfmt.h:32
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
const uint8_t * buffer_start
Definition bytestream.h:34
AVFrame * frame
Definition mmvideo.c:53
unsigned int palette[AVPALETTE_COUNT]
Definition mmvideo.c:54
AVCodecContext * avctx
Definition mmvideo.c:52
GetByteContext gb
Definition mmvideo.c:55
#define av_log(a,...)