]> git.sesse.net Git - ffmpeg/blob - libavcodec/qpeg.c
renaming L1CODE to attribute_l1_text, which is defined in dsputil_bfin.h
[ffmpeg] / libavcodec / qpeg.c
1 /*
2  * QPEG codec
3  * Copyright (c) 2004 Konstantin Shishkov
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 /**
24  * @file qpeg.c
25  * QPEG codec.
26  */
27
28 #include "avcodec.h"
29 #include "mpegvideo.h"
30
31 typedef struct QpegContext{
32     AVCodecContext *avctx;
33     AVFrame pic;
34     uint8_t *refdata;
35 } QpegContext;
36
37 static void qpeg_decode_intra(uint8_t *src, uint8_t *dst, int size,
38                             int stride, int width, int height)
39 {
40     int i;
41     int code;
42     int c0, c1;
43     int run, copy;
44     int filled = 0;
45     int rows_to_go;
46
47     rows_to_go = height;
48     height--;
49     dst = dst + height * stride;
50
51     while((size > 0) && (rows_to_go > 0)) {
52         code = *src++;
53         size--;
54         run = copy = 0;
55         if(code == 0xFC) /* end-of-picture code */
56             break;
57         if(code >= 0xF8) { /* very long run */
58             c0 = *src++;
59             c1 = *src++;
60             size -= 2;
61             run = ((code & 0x7) << 16) + (c0 << 8) + c1 + 2;
62         } else if (code >= 0xF0) { /* long run */
63             c0 = *src++;
64             size--;
65             run = ((code & 0xF) << 8) + c0 + 2;
66         } else if (code >= 0xE0) { /* short run */
67             run = (code & 0x1F) + 2;
68         } else if (code >= 0xC0) { /* very long copy */
69             c0 = *src++;
70             c1 = *src++;
71             size -= 2;
72             copy = ((code & 0x3F) << 16) + (c0 << 8) + c1 + 1;
73         } else if (code >= 0x80) { /* long copy */
74             c0 = *src++;
75             size--;
76             copy = ((code & 0x7F) << 8) + c0 + 1;
77         } else { /* short copy */
78             copy = code + 1;
79         }
80
81         /* perform actual run or copy */
82         if(run) {
83             int p;
84
85             p = *src++;
86             size--;
87             for(i = 0; i < run; i++) {
88                 dst[filled++] = p;
89                 if (filled >= width) {
90                     filled = 0;
91                     dst -= stride;
92                     rows_to_go--;
93                     if(rows_to_go <= 0)
94                         break;
95                 }
96             }
97         } else {
98             size -= copy;
99             for(i = 0; i < copy; i++) {
100                 dst[filled++] = *src++;
101                 if (filled >= width) {
102                     filled = 0;
103                     dst -= stride;
104                     rows_to_go--;
105                     if(rows_to_go <= 0)
106                         break;
107                 }
108             }
109         }
110     }
111 }
112
113 static int qpeg_table_h[16] =
114  { 0x00, 0x20, 0x20, 0x20, 0x18, 0x10, 0x10, 0x20, 0x10, 0x08, 0x18, 0x08, 0x08, 0x18, 0x10, 0x04};
115 static int qpeg_table_w[16] =
116  { 0x00, 0x20, 0x18, 0x08, 0x18, 0x10, 0x20, 0x10, 0x08, 0x10, 0x20, 0x20, 0x08, 0x10, 0x18, 0x04};
117
118 /* Decodes delta frames */
119 static void qpeg_decode_inter(uint8_t *src, uint8_t *dst, int size,
120                             int stride, int width, int height,
121                             int delta, uint8_t *ctable, uint8_t *refdata)
122 {
123     int i, j;
124     int code;
125     int filled = 0;
126     int orig_height;
127
128     /* copy prev frame */
129     for(i = 0; i < height; i++)
130         memcpy(refdata + (i * width), dst + (i * stride), width);
131
132     orig_height = height;
133     height--;
134     dst = dst + height * stride;
135
136     while((size > 0) && (height >= 0)) {
137         code = *src++;
138         size--;
139
140         if(delta) {
141             /* motion compensation */
142             while((code & 0xF0) == 0xF0) {
143                 if(delta == 1) {
144                     int me_idx;
145                     int me_w, me_h, me_x, me_y;
146                     uint8_t *me_plane;
147                     int corr, val;
148
149                     /* get block size by index */
150                     me_idx = code & 0xF;
151                     me_w = qpeg_table_w[me_idx];
152                     me_h = qpeg_table_h[me_idx];
153
154                     /* extract motion vector */
155                     corr = *src++;
156                     size--;
157
158                     val = corr >> 4;
159                     if(val > 7)
160                         val -= 16;
161                     me_x = val;
162
163                     val = corr & 0xF;
164                     if(val > 7)
165                         val -= 16;
166                     me_y = val;
167
168                     /* check motion vector */
169                     if ((me_x + filled < 0) || (me_x + me_w + filled > width) ||
170                        (height - me_y - me_h < 0) || (height - me_y > orig_height) ||
171                        (filled + me_w > width) || (height - me_h < 0))
172                         av_log(NULL, AV_LOG_ERROR, "Bogus motion vector (%i,%i), block size %ix%i at %i,%i\n",
173                                me_x, me_y, me_w, me_h, filled, height);
174                     else {
175                         /* do motion compensation */
176                         me_plane = refdata + (filled + me_x) + (height - me_y) * width;
177                         for(j = 0; j < me_h; j++) {
178                             for(i = 0; i < me_w; i++)
179                                 dst[filled + i - (j * stride)] = me_plane[i - (j * width)];
180                         }
181                     }
182                 }
183                 code = *src++;
184                 size--;
185             }
186         }
187
188         if(code == 0xE0) /* end-of-picture code */
189             break;
190         if(code > 0xE0) { /* run code: 0xE1..0xFF */
191             int p;
192
193             code &= 0x1F;
194             p = *src++;
195             size--;
196             for(i = 0; i <= code; i++) {
197                 dst[filled++] = p;
198                 if(filled >= width) {
199                     filled = 0;
200                     dst -= stride;
201                     height--;
202                 }
203             }
204         } else if(code >= 0xC0) { /* copy code: 0xC0..0xDF */
205             code &= 0x1F;
206
207             for(i = 0; i <= code; i++) {
208                 dst[filled++] = *src++;
209                 if(filled >= width) {
210                     filled = 0;
211                     dst -= stride;
212                     height--;
213                 }
214             }
215             size -= code + 1;
216         } else if(code >= 0x80) { /* skip code: 0x80..0xBF */
217             int skip;
218
219             code &= 0x3F;
220             /* codes 0x80 and 0x81 are actually escape codes,
221                skip value minus constant is in the next byte */
222             if(!code)
223                 skip = (*src++) + 64;
224             else if(code == 1)
225                 skip = (*src++) + 320;
226             else
227                 skip = code;
228             filled += skip;
229             while( filled >= width) {
230                 filled -= width;
231                 dst -= stride;
232                 height--;
233                 if(height < 0)
234                     break;
235             }
236         } else {
237             /* zero code treated as one-pixel skip */
238             if(code)
239                 dst[filled++] = ctable[code & 0x7F];
240             else
241                 filled++;
242             if(filled >= width) {
243                 filled = 0;
244                 dst -= stride;
245                 height--;
246             }
247         }
248     }
249 }
250
251 static int decode_frame(AVCodecContext *avctx,
252                         void *data, int *data_size,
253                         uint8_t *buf, int buf_size)
254 {
255     QpegContext * const a = avctx->priv_data;
256     AVFrame * const p= (AVFrame*)&a->pic;
257     uint8_t* outdata;
258     int delta;
259
260     if(p->data[0])
261         avctx->release_buffer(avctx, p);
262
263     p->reference= 0;
264     if(avctx->get_buffer(avctx, p) < 0){
265         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
266         return -1;
267     }
268     outdata = a->pic.data[0];
269     if(buf[0x85] == 0x10) {
270         qpeg_decode_intra(buf+0x86, outdata, buf_size - 0x86, a->pic.linesize[0], avctx->width, avctx->height);
271     } else {
272         delta = buf[0x85];
273         qpeg_decode_inter(buf+0x86, outdata, buf_size - 0x86, a->pic.linesize[0], avctx->width, avctx->height, delta, buf + 4, a->refdata);
274     }
275
276     /* make the palette available on the way out */
277     memcpy(a->pic.data[1], a->avctx->palctrl->palette, AVPALETTE_SIZE);
278     if (a->avctx->palctrl->palette_changed) {
279         a->pic.palette_has_changed = 1;
280         a->avctx->palctrl->palette_changed = 0;
281     }
282
283     *data_size = sizeof(AVFrame);
284     *(AVFrame*)data = a->pic;
285
286     return buf_size;
287 }
288
289 static int decode_init(AVCodecContext *avctx){
290     QpegContext * const a = avctx->priv_data;
291
292     a->avctx = avctx;
293     avctx->pix_fmt= PIX_FMT_PAL8;
294     a->pic.data[0] = NULL;
295     a->refdata = av_malloc(avctx->width * avctx->height);
296
297     return 0;
298 }
299
300 static int decode_end(AVCodecContext *avctx){
301     QpegContext * const a = avctx->priv_data;
302     AVFrame * const p= (AVFrame*)&a->pic;
303
304     if(p->data[0])
305         avctx->release_buffer(avctx, p);
306
307     av_free(a->refdata);
308     return 0;
309 }
310
311 AVCodec qpeg_decoder = {
312     "qpeg",
313     CODEC_TYPE_VIDEO,
314     CODEC_ID_QPEG,
315     sizeof(QpegContext),
316     decode_init,
317     NULL,
318     decode_end,
319     decode_frame,
320     CODEC_CAP_DR1,
321 };