]> git.sesse.net Git - ffmpeg/blob - libavcodec/cdxl.c
vc1dec: fix current ptr selection in vc1_mc_4mv_chroma()
[ffmpeg] / libavcodec / cdxl.c
1 /*
2  * CDXL video decoder
3  * Copyright (c) 2011-2012 Paul B Mahol
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 #define UNCHECKED_BITSTREAM_READER 1
23
24 #include "libavutil/intreadwrite.h"
25 #include "libavutil/imgutils.h"
26 #include "avcodec.h"
27 #include "get_bits.h"
28 #include "internal.h"
29
30 #define BIT_PLANAR   0x00
31 #define CHUNKY       0x20
32 #define BYTE_PLANAR  0x40
33 #define BIT_LINE     0x80
34 #define BYTE_LINE    0xC0
35
36 typedef struct {
37     AVCodecContext *avctx;
38     int            bpp;
39     int            format;
40     int            padded_bits;
41     const uint8_t  *palette;
42     int            palette_size;
43     const uint8_t  *video;
44     int            video_size;
45     uint8_t        *new_video;
46     int            new_video_size;
47 } CDXLVideoContext;
48
49 static av_cold int cdxl_decode_init(AVCodecContext *avctx)
50 {
51     CDXLVideoContext *c = avctx->priv_data;
52
53     c->new_video_size = 0;
54     c->avctx          = avctx;
55
56     return 0;
57 }
58
59 static void import_palette(CDXLVideoContext *c, uint32_t *new_palette)
60 {
61     int i;
62
63     for (i = 0; i < c->palette_size / 2; i++) {
64         unsigned rgb = AV_RB16(&c->palette[i * 2]);
65         unsigned r   = ((rgb >> 8) & 0xF) * 0x11;
66         unsigned g   = ((rgb >> 4) & 0xF) * 0x11;
67         unsigned b   =  (rgb       & 0xF) * 0x11;
68         AV_WN32(&new_palette[i], (0xFFU << 24) | (r << 16) | (g << 8) | b);
69     }
70 }
71
72 static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
73 {
74     GetBitContext gb;
75     int x, y, plane;
76
77     init_get_bits(&gb, c->video, c->video_size * 8);
78     for (plane = 0; plane < c->bpp; plane++) {
79         for (y = 0; y < c->avctx->height; y++) {
80             for (x = 0; x < c->avctx->width; x++)
81                 out[linesize * y + x] |= get_bits1(&gb) << plane;
82             skip_bits(&gb, c->padded_bits);
83         }
84     }
85 }
86
87 static void bitline2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
88 {
89     GetBitContext  gb;
90     int x, y, plane;
91
92     init_get_bits(&gb, c->video, c->video_size * 8);
93     for (y = 0; y < c->avctx->height; y++) {
94         for (plane = 0; plane < c->bpp; plane++) {
95             for (x = 0; x < c->avctx->width; x++)
96                 out[linesize * y + x] |= get_bits1(&gb) << plane;
97             skip_bits(&gb, c->padded_bits);
98         }
99     }
100 }
101
102 static void import_format(CDXLVideoContext *c, int linesize, uint8_t *out)
103 {
104     memset(out, 0, linesize * c->avctx->height);
105
106     switch (c->format) {
107     case BIT_PLANAR:
108         bitplanar2chunky(c, linesize, out);
109         break;
110     case BIT_LINE:
111         bitline2chunky(c, linesize, out);
112         break;
113     }
114 }
115
116 static void cdxl_decode_rgb(CDXLVideoContext *c, AVFrame *frame)
117 {
118     uint32_t *new_palette = (uint32_t *)frame->data[1];
119
120     memset(frame->data[1], 0, AVPALETTE_SIZE);
121     import_palette(c, new_palette);
122     import_format(c, frame->linesize[0], frame->data[0]);
123 }
124
125 static void cdxl_decode_ham6(CDXLVideoContext *c, AVFrame *frame)
126 {
127     AVCodecContext *avctx = c->avctx;
128     uint32_t new_palette[16], r, g, b;
129     uint8_t *ptr, *out, index, op;
130     int x, y;
131
132     ptr = c->new_video;
133     out = frame->data[0];
134
135     import_palette(c, new_palette);
136     import_format(c, avctx->width, c->new_video);
137
138     for (y = 0; y < avctx->height; y++) {
139         r = new_palette[0] & 0xFF0000;
140         g = new_palette[0] & 0xFF00;
141         b = new_palette[0] & 0xFF;
142         for (x = 0; x < avctx->width; x++) {
143             index  = *ptr++;
144             op     = index >> 4;
145             index &= 15;
146             switch (op) {
147             case 0:
148                 r = new_palette[index] & 0xFF0000;
149                 g = new_palette[index] & 0xFF00;
150                 b = new_palette[index] & 0xFF;
151                 break;
152             case 1:
153                 b = index * 0x11;
154                 break;
155             case 2:
156                 r = index * 0x11 << 16;
157                 break;
158             case 3:
159                 g = index * 0x11 << 8;
160                 break;
161             }
162             AV_WL24(out + x * 3, r | g | b);
163         }
164         out += frame->linesize[0];
165     }
166 }
167
168 static void cdxl_decode_ham8(CDXLVideoContext *c, AVFrame *frame)
169 {
170     AVCodecContext *avctx = c->avctx;
171     uint32_t new_palette[64], r, g, b;
172     uint8_t *ptr, *out, index, op;
173     int x, y;
174
175     ptr = c->new_video;
176     out = frame->data[0];
177
178     import_palette(c, new_palette);
179     import_format(c, avctx->width, c->new_video);
180
181     for (y = 0; y < avctx->height; y++) {
182         r = new_palette[0] & 0xFF0000;
183         g = new_palette[0] & 0xFF00;
184         b = new_palette[0] & 0xFF;
185         for (x = 0; x < avctx->width; x++) {
186             index  = *ptr++;
187             op     = index >> 6;
188             index &= 63;
189             switch (op) {
190             case 0:
191                 r = new_palette[index] & 0xFF0000;
192                 g = new_palette[index] & 0xFF00;
193                 b = new_palette[index] & 0xFF;
194                 break;
195             case 1:
196                 b = (index <<  2) | (b & 3);
197                 break;
198             case 2:
199                 r = (index << 18) | (r & (3 << 16));
200                 break;
201             case 3:
202                 g = (index << 10) | (g & (3 << 8));
203                 break;
204             }
205             AV_WL24(out + x * 3, r | g | b);
206         }
207         out += frame->linesize[0];
208     }
209 }
210
211 static int cdxl_decode_frame(AVCodecContext *avctx, void *data,
212                              int *got_frame, AVPacket *pkt)
213 {
214     CDXLVideoContext *c = avctx->priv_data;
215     AVFrame * const p = data;
216     int ret, w, h, encoding, aligned_width, buf_size = pkt->size;
217     const uint8_t *buf = pkt->data;
218
219     if (buf_size < 32)
220         return AVERROR_INVALIDDATA;
221     encoding        = buf[1] & 7;
222     c->format       = buf[1] & 0xE0;
223     w               = AV_RB16(&buf[14]);
224     h               = AV_RB16(&buf[16]);
225     c->bpp          = buf[19];
226     c->palette_size = AV_RB16(&buf[20]);
227     c->palette      = buf + 32;
228     c->video        = c->palette + c->palette_size;
229     c->video_size   = buf_size - c->palette_size - 32;
230
231     if (c->palette_size > 512)
232         return AVERROR_INVALIDDATA;
233     if (buf_size < c->palette_size + 32)
234         return AVERROR_INVALIDDATA;
235     if (c->bpp < 1)
236         return AVERROR_INVALIDDATA;
237     if (c->format != BIT_PLANAR && c->format != BIT_LINE) {
238         avpriv_request_sample(avctx, "Pixel format 0x%0x", c->format);
239         return AVERROR_PATCHWELCOME;
240     }
241
242     if ((ret = av_image_check_size(w, h, 0, avctx)) < 0)
243         return ret;
244     if (w != avctx->width || h != avctx->height)
245         avcodec_set_dimensions(avctx, w, h);
246
247     aligned_width = FFALIGN(c->avctx->width, 16);
248     c->padded_bits  = aligned_width - c->avctx->width;
249     if (c->video_size < aligned_width * avctx->height * c->bpp / 8)
250         return AVERROR_INVALIDDATA;
251     if (!encoding && c->palette_size && c->bpp <= 8) {
252         avctx->pix_fmt = AV_PIX_FMT_PAL8;
253     } else if (encoding == 1 && (c->bpp == 6 || c->bpp == 8)) {
254         if (c->palette_size != (1 << (c->bpp - 1)))
255             return AVERROR_INVALIDDATA;
256         avctx->pix_fmt = AV_PIX_FMT_BGR24;
257     } else {
258         avpriv_request_sample(avctx, "Encoding %d and bpp %d",
259                               encoding, c->bpp);
260         return AVERROR_PATCHWELCOME;
261     }
262
263     if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
264         return ret;
265     p->pict_type = AV_PICTURE_TYPE_I;
266
267     if (encoding) {
268         av_fast_padded_malloc(&c->new_video, &c->new_video_size,
269                               h * w + FF_INPUT_BUFFER_PADDING_SIZE);
270         if (!c->new_video)
271             return AVERROR(ENOMEM);
272         if (c->bpp == 8)
273             cdxl_decode_ham8(c, p);
274         else
275             cdxl_decode_ham6(c, p);
276     } else {
277         cdxl_decode_rgb(c, p);
278     }
279     *got_frame = 1;
280
281     return buf_size;
282 }
283
284 static av_cold int cdxl_decode_end(AVCodecContext *avctx)
285 {
286     CDXLVideoContext *c = avctx->priv_data;
287
288     av_free(c->new_video);
289
290     return 0;
291 }
292
293 AVCodec ff_cdxl_decoder = {
294     .name           = "cdxl",
295     .type           = AVMEDIA_TYPE_VIDEO,
296     .id             = AV_CODEC_ID_CDXL,
297     .priv_data_size = sizeof(CDXLVideoContext),
298     .init           = cdxl_decode_init,
299     .close          = cdxl_decode_end,
300     .decode         = cdxl_decode_frame,
301     .capabilities   = CODEC_CAP_DR1,
302     .long_name      = NULL_IF_CONFIG_SMALL("Commodore CDXL video"),
303 };