/src/ffmpeg/libavcodec/yop.c
Line | Count | Source |
1 | | /* |
2 | | * Psygnosis YOP decoder |
3 | | * |
4 | | * Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com> |
5 | | * derived from the code by |
6 | | * Copyright (C) 2009 Thomas P. Higdon <thomas.p.higdon@gmail.com> |
7 | | * |
8 | | * This file is part of FFmpeg. |
9 | | * |
10 | | * FFmpeg is free software; you can redistribute it and/or |
11 | | * modify it under the terms of the GNU Lesser General Public |
12 | | * License as published by the Free Software Foundation; either |
13 | | * version 2.1 of the License, or (at your option) any later version. |
14 | | * |
15 | | * FFmpeg is distributed in the hope that it will be useful, |
16 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
18 | | * Lesser General Public License for more details. |
19 | | * |
20 | | * You should have received a copy of the GNU Lesser General Public |
21 | | * License along with FFmpeg; if not, write to the Free Software |
22 | | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
23 | | */ |
24 | | |
25 | | #include <string.h> |
26 | | |
27 | | #include "libavutil/imgutils.h" |
28 | | #include "libavutil/internal.h" |
29 | | |
30 | | #include "avcodec.h" |
31 | | #include "codec_internal.h" |
32 | | #include "decode.h" |
33 | | |
34 | | typedef struct YopDecContext { |
35 | | AVCodecContext *avctx; |
36 | | AVFrame *frame; |
37 | | |
38 | | int num_pal_colors; |
39 | | int first_color[2]; |
40 | | int frame_data_length; |
41 | | |
42 | | const uint8_t *low_nibble; |
43 | | const uint8_t *srcptr; |
44 | | const uint8_t *src_end; |
45 | | uint8_t *dstptr; |
46 | | uint8_t *dstbuf; |
47 | | } YopDecContext; |
48 | | |
49 | | // These tables are taken directly from: |
50 | | // http://wiki.multimedia.cx/index.php?title=Psygnosis_YOP |
51 | | |
52 | | /** |
53 | | * Lookup table for painting macroblocks. Bytes 0-2 of each entry contain |
54 | | * the macroblock positions to be painted (taken as (0, B0, B1, B2)). |
55 | | * Byte 3 contains the number of bytes consumed on the input, |
56 | | * equal to max(bytes 0-2) + 1. |
57 | | */ |
58 | | static const uint8_t paint_lut[15][4] = |
59 | | {{1, 2, 3, 4}, {1, 2, 0, 3}, |
60 | | {1, 2, 1, 3}, {1, 2, 2, 3}, |
61 | | {1, 0, 2, 3}, {1, 0, 0, 2}, |
62 | | {1, 0, 1, 2}, {1, 1, 2, 3}, |
63 | | {0, 1, 2, 3}, {0, 1, 0, 2}, |
64 | | {1, 1, 0, 2}, {0, 1, 1, 2}, |
65 | | {0, 0, 1, 2}, {0, 0, 0, 1}, |
66 | | {1, 1, 1, 2}, |
67 | | }; |
68 | | |
69 | | /** |
70 | | * Lookup table for copying macroblocks. Each entry contains the respective |
71 | | * x and y pixel offset for the copy source. |
72 | | */ |
73 | | static const int8_t motion_vector[16][2] = |
74 | | {{-4, -4}, {-2, -4}, |
75 | | { 0, -4}, { 2, -4}, |
76 | | {-4, -2}, {-4, 0}, |
77 | | {-3, -3}, {-1, -3}, |
78 | | { 1, -3}, { 3, -3}, |
79 | | {-3, -1}, {-2, -2}, |
80 | | { 0, -2}, { 2, -2}, |
81 | | { 4, -2}, {-2, 0}, |
82 | | }; |
83 | | |
84 | | static av_cold int yop_decode_close(AVCodecContext *avctx) |
85 | 458 | { |
86 | 458 | YopDecContext *s = avctx->priv_data; |
87 | | |
88 | 458 | av_frame_free(&s->frame); |
89 | | |
90 | 458 | return 0; |
91 | 458 | } |
92 | | |
93 | | static av_cold int yop_decode_init(AVCodecContext *avctx) |
94 | 640 | { |
95 | 640 | YopDecContext *s = avctx->priv_data; |
96 | 640 | s->avctx = avctx; |
97 | | |
98 | 640 | if (avctx->width & 1 || avctx->height & 1 || |
99 | 610 | av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0) { |
100 | 173 | av_log(avctx, AV_LOG_ERROR, "YOP has invalid dimensions\n"); |
101 | 173 | return AVERROR_INVALIDDATA; |
102 | 173 | } |
103 | | |
104 | 467 | if (avctx->extradata_size < 3) { |
105 | 5 | av_log(avctx, AV_LOG_ERROR, "Missing or incomplete extradata.\n"); |
106 | 5 | return AVERROR_INVALIDDATA; |
107 | 5 | } |
108 | | |
109 | 462 | avctx->pix_fmt = AV_PIX_FMT_PAL8; |
110 | | |
111 | 462 | s->num_pal_colors = avctx->extradata[0]; |
112 | 462 | s->first_color[0] = avctx->extradata[1]; |
113 | 462 | s->first_color[1] = avctx->extradata[2]; |
114 | | |
115 | 462 | if (s->num_pal_colors + s->first_color[0] > 256 || |
116 | 459 | s->num_pal_colors + s->first_color[1] > 256) { |
117 | 4 | av_log(avctx, AV_LOG_ERROR, |
118 | 4 | "Palette parameters invalid, header probably corrupt\n"); |
119 | 4 | return AVERROR_INVALIDDATA; |
120 | 4 | } |
121 | | |
122 | 458 | s->frame = av_frame_alloc(); |
123 | 458 | if (!s->frame) |
124 | 0 | return AVERROR(ENOMEM); |
125 | | |
126 | 458 | return 0; |
127 | 458 | } |
128 | | |
129 | | /** |
130 | | * Paint a macroblock using the pattern in paint_lut. |
131 | | * @param s codec context |
132 | | * @param tag the tag that was in the nibble |
133 | | */ |
134 | | static int yop_paint_block(YopDecContext *s, int linesize, int tag) |
135 | 1.20M | { |
136 | 1.20M | if (s->src_end - s->srcptr < paint_lut[tag][3]) { |
137 | 1.57k | av_log(s->avctx, AV_LOG_ERROR, "Packet too small.\n"); |
138 | 1.57k | return AVERROR_INVALIDDATA; |
139 | 1.57k | } |
140 | | |
141 | 1.20M | s->dstptr[0] = s->srcptr[0]; |
142 | 1.20M | s->dstptr[1] = s->srcptr[paint_lut[tag][0]]; |
143 | 1.20M | s->dstptr[linesize] = s->srcptr[paint_lut[tag][1]]; |
144 | 1.20M | s->dstptr[linesize + 1] = s->srcptr[paint_lut[tag][2]]; |
145 | | |
146 | | // The number of src bytes consumed is in the last part of the lut entry. |
147 | 1.20M | s->srcptr += paint_lut[tag][3]; |
148 | 1.20M | return 0; |
149 | 1.20M | } |
150 | | |
151 | | /** |
152 | | * Copy a previously painted macroblock to the current_block. |
153 | | * @param copy_tag the tag that was in the nibble |
154 | | */ |
155 | | static int yop_copy_previous_block(YopDecContext *s, int linesize, int copy_tag) |
156 | 1.73M | { |
157 | 1.73M | uint8_t *bufptr; |
158 | | |
159 | | // Calculate position for the copy source |
160 | 1.73M | bufptr = s->dstptr + motion_vector[copy_tag][0] + |
161 | 1.73M | linesize * motion_vector[copy_tag][1]; |
162 | 1.73M | if (bufptr < s->dstbuf) { |
163 | 598 | av_log(s->avctx, AV_LOG_ERROR, "File probably corrupt\n"); |
164 | 598 | return AVERROR_INVALIDDATA; |
165 | 598 | } |
166 | | |
167 | 1.73M | s->dstptr[0] = bufptr[0]; |
168 | 1.73M | s->dstptr[1] = bufptr[1]; |
169 | 1.73M | s->dstptr[linesize] = bufptr[linesize]; |
170 | 1.73M | s->dstptr[linesize + 1] = bufptr[linesize + 1]; |
171 | | |
172 | 1.73M | return 0; |
173 | 1.73M | } |
174 | | |
175 | | /** |
176 | | * Return the next nibble in sequence, consuming a new byte on the input |
177 | | * only if necessary. |
178 | | */ |
179 | | static uint8_t yop_get_next_nibble(YopDecContext *s) |
180 | 4.66M | { |
181 | 4.66M | int ret; |
182 | | |
183 | 4.66M | if (s->low_nibble) { |
184 | 2.26M | ret = *s->low_nibble & 0xf; |
185 | 2.26M | s->low_nibble = NULL; |
186 | 2.40M | }else { |
187 | 2.40M | s->low_nibble = s->srcptr++; |
188 | 2.40M | ret = *s->low_nibble >> 4; |
189 | 2.40M | } |
190 | 4.66M | return ret; |
191 | 4.66M | } |
192 | | |
193 | | static int yop_decode_frame(AVCodecContext *avctx, AVFrame *rframe, |
194 | | int *got_frame, AVPacket *avpkt) |
195 | 379k | { |
196 | 379k | YopDecContext *s = avctx->priv_data; |
197 | 379k | AVFrame *frame = s->frame; |
198 | 379k | int tag, firstcolor, is_odd_frame; |
199 | 379k | int ret, i, x, y; |
200 | 379k | uint32_t *palette; |
201 | | |
202 | 379k | if (avpkt->size < 4 + 3 * s->num_pal_colors) { |
203 | 231k | av_log(avctx, AV_LOG_ERROR, "Packet too small.\n"); |
204 | 231k | return AVERROR_INVALIDDATA; |
205 | 231k | } |
206 | | |
207 | 147k | if ((ret = ff_reget_buffer(avctx, frame, 0)) < 0) |
208 | 577 | return ret; |
209 | | |
210 | 146k | if (!avctx->frame_num) |
211 | 15.7k | memset(frame->data[1], 0, AVPALETTE_SIZE); |
212 | | |
213 | 146k | s->dstbuf = frame->data[0]; |
214 | 146k | s->dstptr = frame->data[0]; |
215 | 146k | s->srcptr = avpkt->data + 4; |
216 | 146k | s->src_end = avpkt->data + avpkt->size; |
217 | 146k | s->low_nibble = NULL; |
218 | | |
219 | 146k | is_odd_frame = avpkt->data[0]; |
220 | 146k | if(is_odd_frame>1){ |
221 | 7.78k | av_log(avctx, AV_LOG_ERROR, "frame is too odd %d\n", is_odd_frame); |
222 | 7.78k | return AVERROR_INVALIDDATA; |
223 | 7.78k | } |
224 | 139k | firstcolor = s->first_color[is_odd_frame]; |
225 | 139k | palette = (uint32_t *)frame->data[1]; |
226 | | |
227 | 150k | for (i = 0; i < s->num_pal_colors; i++, s->srcptr += 3) { |
228 | 11.1k | palette[i + firstcolor] = (s->srcptr[0] << 18) | |
229 | 11.1k | (s->srcptr[1] << 10) | |
230 | 11.1k | (s->srcptr[2] << 2); |
231 | 11.1k | palette[i + firstcolor] |= 0xFFU << 24 | |
232 | 11.1k | (palette[i + firstcolor] >> 6) & 0x30303; |
233 | 11.1k | } |
234 | | |
235 | 1.21M | for (y = 0; y < avctx->height; y += 2) { |
236 | 4.01M | for (x = 0; x < avctx->width; x += 2) { |
237 | 2.94M | if (s->srcptr - avpkt->data >= avpkt->size) { |
238 | 6.14k | av_log(avctx, AV_LOG_ERROR, "Packet too small.\n"); |
239 | 6.14k | return AVERROR_INVALIDDATA; |
240 | 6.14k | } |
241 | | |
242 | 2.93M | tag = yop_get_next_nibble(s); |
243 | | |
244 | 2.93M | if (tag != 0xf) { |
245 | 1.20M | ret = yop_paint_block(s, frame->linesize[0], tag); |
246 | 1.20M | if (ret < 0) |
247 | 1.57k | return ret; |
248 | 1.73M | } else { |
249 | 1.73M | tag = yop_get_next_nibble(s); |
250 | 1.73M | ret = yop_copy_previous_block(s, frame->linesize[0], tag); |
251 | 1.73M | if (ret < 0) |
252 | 598 | return ret; |
253 | 1.73M | } |
254 | 2.93M | s->dstptr += 2; |
255 | 2.93M | } |
256 | 1.07M | s->dstptr += 2*frame->linesize[0] - x; |
257 | 1.07M | } |
258 | | |
259 | 130k | if ((ret = av_frame_ref(rframe, s->frame)) < 0) |
260 | 0 | return ret; |
261 | | |
262 | 130k | *got_frame = 1; |
263 | 130k | return avpkt->size; |
264 | 130k | } |
265 | | |
266 | | const FFCodec ff_yop_decoder = { |
267 | | .p.name = "yop", |
268 | | CODEC_LONG_NAME("Psygnosis YOP Video"), |
269 | | .p.type = AVMEDIA_TYPE_VIDEO, |
270 | | .p.id = AV_CODEC_ID_YOP, |
271 | | .p.capabilities = AV_CODEC_CAP_DR1, |
272 | | .priv_data_size = sizeof(YopDecContext), |
273 | | .init = yop_decode_init, |
274 | | .close = yop_decode_close, |
275 | | FF_CODEC_DECODE_CB(yop_decode_frame), |
276 | | }; |