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 
34 #include "libavutil/intreadwrite.h"
35 #include "avcodec.h"
36 #include "bytestream.h"
37 #include "internal.h"
38 
39 #define MM_PREAMBLE_SIZE 6
40 
41 #define MM_TYPE_INTER 0x5
42 #define MM_TYPE_INTRA 0x8
43 #define MM_TYPE_INTRA_HH 0xc
44 #define MM_TYPE_INTER_HH 0xd
45 #define MM_TYPE_INTRA_HHV 0xe
46 #define MM_TYPE_INTER_HHV 0xf
47 #define MM_TYPE_PALETTE 0x31
48 
49 typedef struct MmContext {
54 } MmContext;
55 
57 {
58  MmContext *s = avctx->priv_data;
59 
60  s->avctx = avctx;
61 
62  avctx->pix_fmt = AV_PIX_FMT_PAL8;
63 
65 
66  return 0;
67 }
68 
70 {
71  int i;
72 
73  bytestream2_skip(&s->gb, 4);
74  for (i = 0; i < 128; i++) {
75  s->palette[i] = 0xFFU << 24 | bytestream2_get_be24(&s->gb);
76  s->palette[i+128] = s->palette[i]<<2;
77  }
78 
79  return 0;
80 }
81 
82 /**
83  * @param half_horiz Half horizontal resolution (0 or 1)
84  * @param half_vert Half vertical resolution (0 or 1)
85  */
86 static int mm_decode_intra(MmContext * s, int half_horiz, int half_vert)
87 {
88  int x = 0, y = 0;
89 
90  while (bytestream2_get_bytes_left(&s->gb) > 0) {
91  int run_length, color;
92 
93  if (y >= s->avctx->height)
94  return 0;
95 
96  color = bytestream2_get_byte(&s->gb);
97  if (color & 0x80) {
98  run_length = 1;
99  }else{
100  run_length = (color & 0x7f) + 2;
101  color = bytestream2_get_byte(&s->gb);
102  }
103 
104  if (half_horiz)
105  run_length *=2;
106 
107  if (color) {
108  memset(s->frame.data[0] + y*s->frame.linesize[0] + x, color, run_length);
109  if (half_vert)
110  memset(s->frame.data[0] + (y+1)*s->frame.linesize[0] + x, color, run_length);
111  }
112  x+= run_length;
113 
114  if (x >= s->avctx->width) {
115  x=0;
116  y += 1 + half_vert;
117  }
118  }
119 
120  return 0;
121 }
122 
123 /**
124  * @param half_horiz Half horizontal resolution (0 or 1)
125  * @param half_vert Half vertical resolution (0 or 1)
126  */
127 static int mm_decode_inter(MmContext * s, int half_horiz, int half_vert)
128 {
129  int data_off = bytestream2_get_le16(&s->gb), y = 0;
130  GetByteContext data_ptr;
131 
132  if (bytestream2_get_bytes_left(&s->gb) < data_off)
133  return AVERROR_INVALIDDATA;
134 
135  bytestream2_init(&data_ptr, s->gb.buffer + data_off, bytestream2_get_bytes_left(&s->gb) - data_off);
136  while (s->gb.buffer < data_ptr.buffer_start) {
137  int i, j;
138  int length = bytestream2_get_byte(&s->gb);
139  int x = bytestream2_get_byte(&s->gb) + ((length & 0x80) << 1);
140  length &= 0x7F;
141 
142  if (length==0) {
143  y += x;
144  continue;
145  }
146 
147  if (y + half_vert >= s->avctx->height)
148  return 0;
149 
150  for(i=0; i<length; i++) {
151  int replace_array = bytestream2_get_byte(&s->gb);
152  for(j=0; j<8; j++) {
153  int replace = (replace_array >> (7-j)) & 1;
154  if (replace) {
155  int color = bytestream2_get_byte(&data_ptr);
156  s->frame.data[0][y*s->frame.linesize[0] + x] = color;
157  if (half_horiz)
158  s->frame.data[0][y*s->frame.linesize[0] + x + 1] = color;
159  if (half_vert) {
160  s->frame.data[0][(y+1)*s->frame.linesize[0] + x] = color;
161  if (half_horiz)
162  s->frame.data[0][(y+1)*s->frame.linesize[0] + x + 1] = color;
163  }
164  }
165  x += 1 + half_horiz;
166  }
167  }
168 
169  y += 1 + half_vert;
170  }
171 
172  return 0;
173 }
174 
176  void *data, int *got_frame,
177  AVPacket *avpkt)
178 {
179  const uint8_t *buf = avpkt->data;
180  int buf_size = avpkt->size;
181  MmContext *s = avctx->priv_data;
182  int type, res;
183 
184  if (buf_size < MM_PREAMBLE_SIZE)
185  return AVERROR_INVALIDDATA;
186  type = AV_RL16(&buf[0]);
187  buf += MM_PREAMBLE_SIZE;
188  buf_size -= MM_PREAMBLE_SIZE;
189  bytestream2_init(&s->gb, buf, buf_size);
190 
191  if ((res = ff_reget_buffer(avctx, &s->frame)) < 0)
192  return res;
193 
194  switch(type) {
195  case MM_TYPE_PALETTE : res = mm_decode_pal(s); return avpkt->size;
196  case MM_TYPE_INTRA : res = mm_decode_intra(s, 0, 0); break;
197  case MM_TYPE_INTRA_HH : res = mm_decode_intra(s, 1, 0); break;
198  case MM_TYPE_INTRA_HHV : res = mm_decode_intra(s, 1, 1); break;
199  case MM_TYPE_INTER : res = mm_decode_inter(s, 0, 0); break;
200  case MM_TYPE_INTER_HH : res = mm_decode_inter(s, 1, 0); break;
201  case MM_TYPE_INTER_HHV : res = mm_decode_inter(s, 1, 1); break;
202  default:
203  res = AVERROR_INVALIDDATA;
204  break;
205  }
206  if (res < 0)
207  return res;
208 
209  memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
210 
211  if ((res = av_frame_ref(data, &s->frame)) < 0)
212  return res;
213 
214  *got_frame = 1;
215 
216  return avpkt->size;
217 }
218 
220 {
221  MmContext *s = avctx->priv_data;
222 
223  av_frame_unref(&s->frame);
224 
225  return 0;
226 }
227 
229  .name = "mmvideo",
230  .type = AVMEDIA_TYPE_VIDEO,
231  .id = AV_CODEC_ID_MMVIDEO,
232  .priv_data_size = sizeof(MmContext),
233  .init = mm_decode_init,
234  .close = mm_decode_end,
236  .capabilities = CODEC_CAP_DR1,
237  .long_name = NULL_IF_CONFIG_SMALL("American Laser Games MM Video"),
238 };
const char * s
Definition: avisynth_c.h:668
AVFrame frame
Definition: mmvideo.c:51
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
static int mm_decode_pal(MmContext *s)
Definition: mmvideo.c:69
This structure describes decoded (raw) audio or video data.
Definition: frame.h:76
static int mm_decode_intra(MmContext *s, int half_horiz, int half_vert)
Definition: mmvideo.c:86
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:130
#define AV_RL16
#define MM_TYPE_INTER_HH
Definition: mmvideo.c:44
initialize output if(nPeaks >3)%at least 3 peaks in spectrum for trying to find f0 nf0peaks
uint8_t
#define av_cold
Definition: attributes.h:78
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:79
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
Definition: log.c:77
#define AVPALETTE_SIZE
Definition: pixfmt.h:33
static int mm_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: mmvideo.c:175
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
uint8_t * data
const uint8_t * buffer
Definition: bytestream.h:33
int palette[AVPALETTE_COUNT]
Definition: mmvideo.c:52
Discrete Time axis x
#define U(x)
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:159
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Spectrum Plot time data
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:149
static av_cold int mm_decode_end(AVCodecContext *avctx)
Definition: mmvideo.c:219
const char * name
Name of the codec implementation.
external API header
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
Identical in function to av_frame_make_writable(), except it uses ff_get_buffer() to allocate the buf...
#define MM_PREAMBLE_SIZE
Definition: mmvideo.c:39
int width
picture width / height.
#define MM_TYPE_INTER
Definition: mmvideo.c:41
#define MM_TYPE_INTRA_HHV
Definition: mmvideo.c:45
#define MM_TYPE_PALETTE
Definition: mmvideo.c:47
AVCodec ff_mmvideo_decoder
Definition: mmvideo.c:228
static int mm_decode_inter(MmContext *s, int half_horiz, int half_vert)
Definition: mmvideo.c:127
struct MmContext MmContext
#define MM_TYPE_INTRA_HH
Definition: mmvideo.c:43
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:101
main external API structure.
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
void * buf
Definition: avisynth_c.h:594
static av_cold int mm_decode_init(AVCodecContext *avctx)
Definition: mmvideo.c:56
const uint8_t * buffer_start
Definition: bytestream.h:33
void avcodec_get_frame_defaults(AVFrame *frame)
Set the fields of the given AVFrame to default values.
synthesis window for stochastic i
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:330
#define MM_TYPE_INTRA
Definition: mmvideo.c:42
#define type
#define AVPALETTE_COUNT
Definition: pixfmt.h:34
#define MM_TYPE_INTER_HHV
Definition: mmvideo.c:46
int av_frame_ref(AVFrame *dst, AVFrame *src)
Setup a new reference to the data described by an given frame.
Definition: frame.c:228
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:87
common internal api header.
GetByteContext gb
Definition: mmvideo.c:53
AVCodecContext * avctx
Definition: mmvideo.c:50
function y
Definition: D.m:1
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868
const char int length
Definition: avisynth_c.h:668
This structure stores compressed data.