]> git.sesse.net Git - ffmpeg/blob - libavcodec/roqvideodec.c
Merge commit '79922d7237aba2b8c6abbd2e06a0c08e4f498ad4'
[ffmpeg] / libavcodec / roqvideodec.c
1 /*
2  * Copyright (C) 2003 the ffmpeg project
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * id RoQ Video Decoder by Dr. Tim Ferguson
24  * For more information about the id RoQ format, visit:
25  *   http://www.csse.monash.edu.au/~timf/
26  */
27
28 #include "avcodec.h"
29 #include "bytestream.h"
30 #include "roqvideo.h"
31
32 static void roqvideo_decode_frame(RoqContext *ri)
33 {
34     unsigned int chunk_id = 0, chunk_arg = 0;
35     unsigned long chunk_size = 0;
36     int i, j, k, nv1, nv2, vqflg = 0, vqflg_pos = -1;
37     int vqid, xpos, ypos, xp, yp, x, y, mx, my;
38     int frame_stats[2][4] = {{0},{0}};
39     roq_qcell *qcell;
40     int64_t chunk_start;
41
42     while (bytestream2_get_bytes_left(&ri->gb) >= 8) {
43         chunk_id   = bytestream2_get_le16(&ri->gb);
44         chunk_size = bytestream2_get_le32(&ri->gb);
45         chunk_arg  = bytestream2_get_le16(&ri->gb);
46
47         if(chunk_id == RoQ_QUAD_VQ)
48             break;
49         if(chunk_id == RoQ_QUAD_CODEBOOK) {
50             if((nv1 = chunk_arg >> 8) == 0)
51                 nv1 = 256;
52             if((nv2 = chunk_arg & 0xff) == 0 && nv1 * 6 < chunk_size)
53                 nv2 = 256;
54             for(i = 0; i < nv1; i++) {
55                 ri->cb2x2[i].y[0] = bytestream2_get_byte(&ri->gb);
56                 ri->cb2x2[i].y[1] = bytestream2_get_byte(&ri->gb);
57                 ri->cb2x2[i].y[2] = bytestream2_get_byte(&ri->gb);
58                 ri->cb2x2[i].y[3] = bytestream2_get_byte(&ri->gb);
59                 ri->cb2x2[i].u    = bytestream2_get_byte(&ri->gb);
60                 ri->cb2x2[i].v    = bytestream2_get_byte(&ri->gb);
61             }
62             for(i = 0; i < nv2; i++)
63                 for(j = 0; j < 4; j++)
64                     ri->cb4x4[i].idx[j] = bytestream2_get_byte(&ri->gb);
65         }
66     }
67
68     chunk_start = bytestream2_tell(&ri->gb);
69     xpos = ypos = 0;
70
71     if (chunk_size > bytestream2_get_bytes_left(&ri->gb)) {
72         av_log(ri->avctx, AV_LOG_ERROR, "Chunk does not fit in input buffer\n");
73         chunk_size = bytestream2_get_bytes_left(&ri->gb);
74     }
75
76     while (bytestream2_tell(&ri->gb) < chunk_start + chunk_size) {
77         for (yp = ypos; yp < ypos + 16; yp += 8)
78             for (xp = xpos; xp < xpos + 16; xp += 8) {
79                 if (bytestream2_tell(&ri->gb) >= chunk_start + chunk_size) {
80                     av_log(ri->avctx, AV_LOG_ERROR, "Input buffer too small\n");
81                     return;
82                 }
83                 if (vqflg_pos < 0) {
84                     vqflg = bytestream2_get_le16(&ri->gb);
85                     vqflg_pos = 7;
86                 }
87                 vqid = (vqflg >> (vqflg_pos * 2)) & 0x3;
88                 frame_stats[0][vqid]++;
89                 vqflg_pos--;
90
91                 switch(vqid) {
92                 case RoQ_ID_MOT:
93                     break;
94                 case RoQ_ID_FCC: {
95                     int byte = bytestream2_get_byte(&ri->gb);
96                     mx = 8 - (byte >> 4) - ((signed char) (chunk_arg >> 8));
97                     my = 8 - (byte & 0xf) - ((signed char) chunk_arg);
98                     ff_apply_motion_8x8(ri, xp, yp, mx, my);
99                     break;
100                 }
101                 case RoQ_ID_SLD:
102                     qcell = ri->cb4x4 + bytestream2_get_byte(&ri->gb);
103                     ff_apply_vector_4x4(ri, xp,     yp,     ri->cb2x2 + qcell->idx[0]);
104                     ff_apply_vector_4x4(ri, xp + 4, yp,     ri->cb2x2 + qcell->idx[1]);
105                     ff_apply_vector_4x4(ri, xp,     yp + 4, ri->cb2x2 + qcell->idx[2]);
106                     ff_apply_vector_4x4(ri, xp + 4, yp + 4, ri->cb2x2 + qcell->idx[3]);
107                     break;
108                 case RoQ_ID_CCC:
109                     for (k = 0; k < 4; k++) {
110                         x = xp; y = yp;
111                         if(k & 0x01) x += 4;
112                         if(k & 0x02) y += 4;
113
114                         if (bytestream2_tell(&ri->gb) >= chunk_start + chunk_size) {
115                             av_log(ri->avctx, AV_LOG_ERROR, "Input buffer too small\n");
116                             return;
117                         }
118                         if (vqflg_pos < 0) {
119                             vqflg = bytestream2_get_le16(&ri->gb);
120                             vqflg_pos = 7;
121                         }
122                         vqid = (vqflg >> (vqflg_pos * 2)) & 0x3;
123                         frame_stats[1][vqid]++;
124                         vqflg_pos--;
125                         switch(vqid) {
126                         case RoQ_ID_MOT:
127                             break;
128                         case RoQ_ID_FCC: {
129                             int byte = bytestream2_get_byte(&ri->gb);
130                             mx = 8 - (byte >> 4) - ((signed char) (chunk_arg >> 8));
131                             my = 8 - (byte & 0xf) - ((signed char) chunk_arg);
132                             ff_apply_motion_4x4(ri, x, y, mx, my);
133                             break;
134                         }
135                         case RoQ_ID_SLD:
136                             qcell = ri->cb4x4 + bytestream2_get_byte(&ri->gb);
137                             ff_apply_vector_2x2(ri, x,     y,     ri->cb2x2 + qcell->idx[0]);
138                             ff_apply_vector_2x2(ri, x + 2, y,     ri->cb2x2 + qcell->idx[1]);
139                             ff_apply_vector_2x2(ri, x,     y + 2, ri->cb2x2 + qcell->idx[2]);
140                             ff_apply_vector_2x2(ri, x + 2, y + 2, ri->cb2x2 + qcell->idx[3]);
141                             break;
142                         case RoQ_ID_CCC:
143                             ff_apply_vector_2x2(ri, x,     y,     ri->cb2x2 + bytestream2_get_byte(&ri->gb));
144                             ff_apply_vector_2x2(ri, x + 2, y,     ri->cb2x2 + bytestream2_get_byte(&ri->gb));
145                             ff_apply_vector_2x2(ri, x,     y + 2, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
146                             ff_apply_vector_2x2(ri, x + 2, y + 2, ri->cb2x2 + bytestream2_get_byte(&ri->gb));
147                             break;
148                         }
149                     }
150                     break;
151                 default:
152                     av_log(ri->avctx, AV_LOG_ERROR, "Unknown vq code: %d\n", vqid);
153             }
154         }
155
156         xpos += 16;
157         if (xpos >= ri->width) {
158             xpos -= ri->width;
159             ypos += 16;
160         }
161         if(ypos >= ri->height)
162             break;
163     }
164 }
165
166
167 static av_cold int roq_decode_init(AVCodecContext *avctx)
168 {
169     RoqContext *s = avctx->priv_data;
170
171     s->avctx = avctx;
172     s->width = avctx->width;
173     s->height = avctx->height;
174     avcodec_get_frame_defaults(&s->frames[0]);
175     avcodec_get_frame_defaults(&s->frames[1]);
176     s->last_frame    = &s->frames[0];
177     s->current_frame = &s->frames[1];
178     avctx->pix_fmt = AV_PIX_FMT_YUV444P;
179
180     return 0;
181 }
182
183 static int roq_decode_frame(AVCodecContext *avctx,
184                             void *data, int *data_size,
185                             AVPacket *avpkt)
186 {
187     const uint8_t *buf = avpkt->data;
188     int buf_size = avpkt->size;
189     RoqContext *s = avctx->priv_data;
190     int copy= !s->current_frame->data[0];
191     int ret;
192
193     s->current_frame->reference = 3;
194     if ((ret = avctx->reget_buffer(avctx, s->current_frame)) < 0) {
195         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
196         return ret;
197     }
198
199     if(copy)
200         av_picture_copy((AVPicture*)s->current_frame, (AVPicture*)s->last_frame,
201                         avctx->pix_fmt, avctx->width, avctx->height);
202
203     bytestream2_init(&s->gb, buf, buf_size);
204     roqvideo_decode_frame(s);
205
206     *data_size = sizeof(AVFrame);
207     *(AVFrame*)data = *s->current_frame;
208
209     /* shuffle frames */
210     FFSWAP(AVFrame *, s->current_frame, s->last_frame);
211
212     return buf_size;
213 }
214
215 static av_cold int roq_decode_end(AVCodecContext *avctx)
216 {
217     RoqContext *s = avctx->priv_data;
218
219     /* release the last frame */
220     if (s->last_frame->data[0])
221         avctx->release_buffer(avctx, s->last_frame);
222     if (s->current_frame->data[0])
223         avctx->release_buffer(avctx, s->current_frame);
224
225     return 0;
226 }
227
228 AVCodec ff_roq_decoder = {
229     .name           = "roqvideo",
230     .type           = AVMEDIA_TYPE_VIDEO,
231     .id             = AV_CODEC_ID_ROQ,
232     .priv_data_size = sizeof(RoqContext),
233     .init           = roq_decode_init,
234     .close          = roq_decode_end,
235     .decode         = roq_decode_frame,
236     .capabilities   = CODEC_CAP_DR1,
237     .long_name      = NULL_IF_CONFIG_SMALL("id RoQ video"),
238 };