]> git.sesse.net Git - ffmpeg/blob - libavcodec/mmvideo.c
convert svn:ignore properties to .gitignore files
[ffmpeg] / libavcodec / mmvideo.c
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
37 #define MM_PREAMBLE_SIZE    6
38
39 #define MM_TYPE_INTER       0x5
40 #define MM_TYPE_INTRA       0x8
41 #define MM_TYPE_INTRA_HH    0xc
42 #define MM_TYPE_INTER_HH    0xd
43 #define MM_TYPE_INTRA_HHV   0xe
44 #define MM_TYPE_INTER_HHV   0xf
45 #define MM_TYPE_PALETTE     0x31
46
47 typedef struct MmContext {
48     AVCodecContext *avctx;
49     AVFrame frame;
50     int palette[AVPALETTE_COUNT];
51 } MmContext;
52
53 static av_cold int mm_decode_init(AVCodecContext *avctx)
54 {
55     MmContext *s = avctx->priv_data;
56
57     s->avctx = avctx;
58
59     avctx->pix_fmt = PIX_FMT_PAL8;
60
61     s->frame.reference = 1;
62     if (avctx->get_buffer(avctx, &s->frame)) {
63         av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
64         return -1;
65     }
66
67     return 0;
68 }
69
70 static void mm_decode_pal(MmContext *s, const uint8_t *buf, const uint8_t *buf_end)
71 {
72     int i;
73     buf += 4;
74     for (i=0; i<128 && buf+2<buf_end; i++) {
75         s->palette[i] = AV_RB24(buf);
76         s->palette[i+128] = s->palette[i]<<2;
77         buf += 3;
78     }
79 }
80
81 /**
82  * @param half_horiz Half horizontal resolution (0 or 1)
83  * @param half_vert Half vertical resolution (0 or 1)
84  */
85 static void mm_decode_intra(MmContext * s, int half_horiz, int half_vert, const uint8_t *buf, int buf_size)
86 {
87     int i, x, y;
88     i=0; x=0; y=0;
89
90     while(i<buf_size) {
91         int run_length, color;
92
93         if (y >= s->avctx->height)
94             return;
95
96         if (buf[i] & 0x80) {
97             run_length = 1;
98             color = buf[i];
99             i++;
100         }else{
101             run_length = (buf[i] & 0x7f) + 2;
102             color = buf[i+1];
103             i+=2;
104         }
105
106         if (half_horiz)
107             run_length *=2;
108
109         if (color) {
110             memset(s->frame.data[0] + y*s->frame.linesize[0] + x, color, run_length);
111             if (half_vert)
112                 memset(s->frame.data[0] + (y+1)*s->frame.linesize[0] + x, color, run_length);
113         }
114         x+= run_length;
115
116         if (x >= s->avctx->width) {
117             x=0;
118             y += 1 + half_vert;
119         }
120     }
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 void mm_decode_inter(MmContext * s, int half_horiz, int half_vert, const uint8_t *buf, int buf_size)
128 {
129     const int data_ptr = 2 + AV_RL16(&buf[0]);
130     int d, r, y;
131     d = data_ptr; r = 2; y = 0;
132
133     while(r < data_ptr) {
134         int i, j;
135         int length = buf[r] & 0x7f;
136         int x = buf[r+1] + ((buf[r] & 0x80) << 1);
137         r += 2;
138
139         if (length==0) {
140             y += x;
141             continue;
142         }
143
144         if (y + half_vert >= s->avctx->height)
145             return;
146
147         for(i=0; i<length; i++) {
148             for(j=0; j<8; j++) {
149                 int replace = (buf[r+i] >> (7-j)) & 1;
150                 if (replace) {
151                     int color = buf[d];
152                     s->frame.data[0][y*s->frame.linesize[0] + x] = color;
153                     if (half_horiz)
154                         s->frame.data[0][y*s->frame.linesize[0] + x + 1] = color;
155                     if (half_vert) {
156                         s->frame.data[0][(y+1)*s->frame.linesize[0] + x] = color;
157                         if (half_horiz)
158                             s->frame.data[0][(y+1)*s->frame.linesize[0] + x + 1] = color;
159                     }
160                     d++;
161                 }
162                 x += 1 + half_horiz;
163             }
164         }
165
166         r += length;
167         y += 1 + half_vert;
168     }
169 }
170
171 static int mm_decode_frame(AVCodecContext *avctx,
172                             void *data, int *data_size,
173                             AVPacket *avpkt)
174 {
175     const uint8_t *buf = avpkt->data;
176     int buf_size = avpkt->size;
177     MmContext *s = avctx->priv_data;
178     const uint8_t *buf_end = buf+buf_size;
179     int type;
180
181     type = AV_RL16(&buf[0]);
182     buf += MM_PREAMBLE_SIZE;
183     buf_size -= MM_PREAMBLE_SIZE;
184
185     switch(type) {
186     case MM_TYPE_PALETTE   : mm_decode_pal(s, buf, buf_end); return buf_size;
187     case MM_TYPE_INTRA     : mm_decode_intra(s, 0, 0, buf, buf_size); break;
188     case MM_TYPE_INTRA_HH  : mm_decode_intra(s, 1, 0, buf, buf_size); break;
189     case MM_TYPE_INTRA_HHV : mm_decode_intra(s, 1, 1, buf, buf_size); break;
190     case MM_TYPE_INTER     : mm_decode_inter(s, 0, 0, buf, buf_size); break;
191     case MM_TYPE_INTER_HH  : mm_decode_inter(s, 1, 0, buf, buf_size); break;
192     case MM_TYPE_INTER_HHV : mm_decode_inter(s, 1, 1, buf, buf_size); break;
193     default :
194         return -1;
195     }
196
197     memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
198
199     *data_size = sizeof(AVFrame);
200     *(AVFrame*)data = s->frame;
201
202     return buf_size;
203 }
204
205 static av_cold int mm_decode_end(AVCodecContext *avctx)
206 {
207     MmContext *s = avctx->priv_data;
208
209     if(s->frame.data[0])
210         avctx->release_buffer(avctx, &s->frame);
211
212     return 0;
213 }
214
215 AVCodec mmvideo_decoder = {
216     "mmvideo",
217     AVMEDIA_TYPE_VIDEO,
218     CODEC_ID_MMVIDEO,
219     sizeof(MmContext),
220     mm_decode_init,
221     NULL,
222     mm_decode_end,
223     mm_decode_frame,
224     CODEC_CAP_DR1,
225     .long_name = NULL_IF_CONFIG_SMALL("American Laser Games MM Video"),
226 };