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