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