libopenjpegdec.c 16.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * JPEG 2000 decoding support via OpenJPEG
 * Copyright (c) 2009 Jaikrishnan Menon <realityman@gmx.net>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
23 24 25 26
 * @file
 * JPEG 2000 decoder using libopenjpeg
 */

27
#include "libavutil/common.h"
28
#include "libavutil/imgutils.h"
29
#include "libavutil/intreadwrite.h"
30
#include "libavutil/opt.h"
31 32
#include "libavutil/pixfmt.h"

33
#include "avcodec.h"
34
#include "internal.h"
35
#include "thread.h"
36

37
#include <openjpeg.h>
38

39 40 41
#define JP2_SIG_TYPE    0x6A502020
#define JP2_SIG_VALUE   0x0D0A870A

42 43
// pix_fmts with lower bpp have to be listed before
// similar pix_fmts with higher bpp.
44
#define RGB_PIXEL_FORMATS  AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,                 \
45
                           AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64
46

47
#define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8,                  \
48
                           AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12, AV_PIX_FMT_GRAY14, \
49
                           AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16
50

51 52 53 54 55 56 57 58 59 60 61
#define YUV_PIXEL_FORMATS  AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUVA420P, \
                           AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA422P, \
                           AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA444P, \
                           AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9, \
                           AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9, \
                           AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, \
                           AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10, \
                           AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, \
                           AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14, \
                           AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, \
                           AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16
62

63 64
#define XYZ_PIXEL_FORMATS  AV_PIX_FMT_XYZ12

65
static const enum AVPixelFormat libopenjpeg_rgb_pix_fmts[]  = {
66 67
    RGB_PIXEL_FORMATS
};
68
static const enum AVPixelFormat libopenjpeg_gray_pix_fmts[] = {
69 70
    GRAY_PIXEL_FORMATS
};
71
static const enum AVPixelFormat libopenjpeg_yuv_pix_fmts[]  = {
72 73
    YUV_PIXEL_FORMATS
};
74
static const enum AVPixelFormat libopenjpeg_all_pix_fmts[]  = {
75 76
    RGB_PIXEL_FORMATS, GRAY_PIXEL_FORMATS, YUV_PIXEL_FORMATS, XYZ_PIXEL_FORMATS
};
77

78
typedef struct LibOpenJPEGContext {
79
    AVClass *class;
80
    opj_dparameters_t dec_params;
81
    int lowqual;
82 83
} LibOpenJPEGContext;

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
static void error_callback(const char *msg, void *data)
{
    av_log(data, AV_LOG_ERROR, "%s", msg);
}

static void warning_callback(const char *msg, void *data)
{
    av_log(data, AV_LOG_WARNING, "%s", msg);
}

static void info_callback(const char *msg, void *data)
{
    av_log(data, AV_LOG_DEBUG, "%s", msg);
}

99 100 101 102 103 104 105 106 107
typedef struct BufferReader {
    int pos;
    int size;
    const uint8_t *buffer;
} BufferReader;

static OPJ_SIZE_T stream_read(void *out_buffer, OPJ_SIZE_T nb_bytes, void *user_data)
{
    BufferReader *reader = user_data;
108 109
    int remaining;

110 111 112
    if (reader->pos == reader->size) {
        return (OPJ_SIZE_T)-1;
    }
113
    remaining = reader->size - reader->pos;
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
    if (nb_bytes > remaining) {
        nb_bytes = remaining;
    }
    memcpy(out_buffer, reader->buffer + reader->pos, nb_bytes);
    reader->pos += (int)nb_bytes;
    return nb_bytes;
}

static OPJ_OFF_T stream_skip(OPJ_OFF_T nb_bytes, void *user_data)
{
    BufferReader *reader = user_data;
    if (nb_bytes < 0) {
        if (reader->pos == 0) {
            return (OPJ_SIZE_T)-1;
        }
        if (nb_bytes + reader->pos < 0) {
            nb_bytes = -reader->pos;
        }
    } else {
133 134
        int remaining;

135 136 137
        if (reader->pos == reader->size) {
            return (OPJ_SIZE_T)-1;
        }
138
        remaining = reader->size - reader->pos;
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
        if (nb_bytes > remaining) {
            nb_bytes = remaining;
        }
    }
    reader->pos += (int)nb_bytes;
    return nb_bytes;
}

static OPJ_BOOL stream_seek(OPJ_OFF_T nb_bytes, void *user_data)
{
    BufferReader *reader = user_data;
    if (nb_bytes < 0 || nb_bytes > reader->size) {
        return OPJ_FALSE;
    }
    reader->pos = (int)nb_bytes;
    return OPJ_TRUE;
}

157
static inline int libopenjpeg_matches_pix_fmt(const opj_image_t *image, enum AVPixelFormat pix_fmt)
158
{
159
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
160
    int match = 1;
161

162
    if (desc->nb_components != image->numcomps) {
163
        return 0;
164 165
    }

166
    switch (desc->nb_components) {
167 168
    case 4:
        match = match &&
169
                desc->comp[3].depth >= image->comps[3].prec &&
170 171
                1 == image->comps[3].dx &&
                1 == image->comps[3].dy;
172 173
    case 3:
        match = match &&
174
                desc->comp[2].depth >= image->comps[2].prec &&
175 176
                1 << desc->log2_chroma_w == image->comps[2].dx &&
                1 << desc->log2_chroma_h == image->comps[2].dy;
177 178
    case 2:
        match = match &&
179
                desc->comp[1].depth >= image->comps[1].prec &&
180 181
                1 << desc->log2_chroma_w == image->comps[1].dx &&
                1 << desc->log2_chroma_h == image->comps[1].dy;
182 183
    case 1:
        match = match &&
184
                desc->comp[0].depth >= image->comps[0].prec &&
185 186
                1 == image->comps[0].dx &&
                1 == image->comps[0].dy;
187 188
    default:
        break;
189 190
    }

191 192
    return match;
}
193

194
static inline enum AVPixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *image) {
195
    int index;
196
    const enum AVPixelFormat *possible_fmts = NULL;
197 198 199
    int possible_fmts_nb = 0;

    switch (image->color_space) {
200
    case OPJ_CLRSPC_SRGB:
201
        possible_fmts    = libopenjpeg_rgb_pix_fmts;
202
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_rgb_pix_fmts);
203
        break;
204
    case OPJ_CLRSPC_GRAY:
205
        possible_fmts    = libopenjpeg_gray_pix_fmts;
206
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_gray_pix_fmts);
207
        break;
208
    case OPJ_CLRSPC_SYCC:
209
        possible_fmts    = libopenjpeg_yuv_pix_fmts;
210
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_yuv_pix_fmts);
211 212
        break;
    default:
213
        possible_fmts    = libopenjpeg_all_pix_fmts;
214
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_all_pix_fmts);
215
        break;
216
    }
217

218
    for (index = 0; index < possible_fmts_nb; ++index)
219 220 221
        if (libopenjpeg_matches_pix_fmt(image, possible_fmts[index])) {
            return possible_fmts[index];
        }
222

223
    return AV_PIX_FMT_NONE;
224 225
}

226
static inline int libopenjpeg_ispacked(enum AVPixelFormat pix_fmt)
227
{
228
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
229
    int i, component_plane;
230

231
    if (pix_fmt == AV_PIX_FMT_GRAY16)
232 233
        return 0;

234
    component_plane = desc->comp[0].plane;
235
    for (i = 1; i < desc->nb_components; i++)
236
        if (component_plane != desc->comp[i].plane)
237 238 239 240 241 242 243
            return 0;
    return 1;
}

static inline void libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image) {
    uint8_t *img_ptr;
    int index, x, y, c;
244
    for (y = 0; y < picture->height; y++) {
245 246 247 248
        index   = y * picture->width;
        img_ptr = picture->data[0] + y * picture->linesize[0];
        for (x = 0; x < picture->width; x++, index++)
            for (c = 0; c < image->numcomps; c++)
249
                *img_ptr++ = 0x80 * image->comps[c].sgnd + image->comps[c].data[index];
250 251 252
    }
}

253 254
static inline void libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image) {
    uint16_t *img_ptr;
255
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
256 257
    int index, x, y, c;
    int adjust[4];
258
    for (x = 0; x < image->numcomps; x++)
259
        adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
260

261
    for (y = 0; y < picture->height; y++) {
262 263 264 265
        index   = y * picture->width;
        img_ptr = (uint16_t *) (picture->data[0] + y * picture->linesize[0]);
        for (x = 0; x < picture->width; x++, index++)
            for (c = 0; c < image->numcomps; c++)
266 267
                *img_ptr++ = (1 << image->comps[c].prec - 1) * image->comps[c].sgnd +
                             (unsigned)image->comps[c].data[index] << adjust[c];
268 269 270
    }
}

271 272 273 274 275
static inline void libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) {
    int *comp_data;
    uint8_t *img_ptr;
    int index, x, y;

276
    for (index = 0; index < image->numcomps; index++) {
277
        comp_data = image->comps[index].data;
278
        for (y = 0; y < image->comps[index].h; y++) {
279
            img_ptr = picture->data[index] + y * picture->linesize[index];
280
            for (x = 0; x < image->comps[index].w; x++) {
281
                *img_ptr = 0x80 * image->comps[index].sgnd + *comp_data;
282 283 284 285 286 287 288 289 290 291
                img_ptr++;
                comp_data++;
            }
        }
    }
}

static inline void libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) {
    int *comp_data;
    uint16_t *img_ptr;
292
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
293
    int index, x, y;
294 295
    int adjust[4];
    for (x = 0; x < image->numcomps; x++)
296
        adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
297

298
    for (index = 0; index < image->numcomps; index++) {
299
        comp_data = image->comps[index].data;
300
        for (y = 0; y < image->comps[index].h; y++) {
301
            img_ptr = (uint16_t *)(picture->data[index] + y * picture->linesize[index]);
302
            for (x = 0; x < image->comps[index].w; x++) {
303 304
                *img_ptr = (1 << image->comps[index].prec - 1) * image->comps[index].sgnd +
                           (unsigned)*comp_data << adjust[index];
305 306 307 308 309
                img_ptr++;
                comp_data++;
            }
        }
    }
310 311 312 313 314 315 316
}

static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx)
{
    LibOpenJPEGContext *ctx = avctx->priv_data;

    opj_set_default_decoder_parameters(&ctx->dec_params);
317 318 319
    return 0;
}

320
static int libopenjpeg_decode_frame(AVCodecContext *avctx,
321
                                    void *data, int *got_frame,
322
                                    AVPacket *avpkt)
323
{
324 325
    uint8_t *buf            = avpkt->data;
    int buf_size            = avpkt->size;
326
    LibOpenJPEGContext *ctx = avctx->priv_data;
327 328
    ThreadFrame frame       = { .f = data };
    AVFrame *picture        = data;
329
    const AVPixFmtDescriptor *desc;
330
    int width, height, ret;
331
    int pixel_size = 0;
332
    int ispacked   = 0;
333
    int i;
334 335 336 337
    opj_image_t *image = NULL;
    BufferReader reader = {0, avpkt->size, avpkt->data};
    opj_codec_t *dec = NULL;
    opj_stream_t *stream = NULL;
338

339
    *got_frame = 0;
340 341

    // Check if input is a raw jpeg2k codestream or in jp2 wrapping
342
    if ((AV_RB32(buf) == 12) &&
343 344
        (AV_RB32(buf + 4) == JP2_SIG_TYPE) &&
        (AV_RB32(buf + 8) == JP2_SIG_VALUE)) {
345
        dec = opj_create_decompress(OPJ_CODEC_JP2);
346
    } else {
347 348
        /* If the AVPacket contains a jp2c box, then skip to
         * the starting byte of the codestream. */
349 350
        if (AV_RB32(buf + 4) == AV_RB32("jp2c"))
            buf += 8;
351
        dec = opj_create_decompress(OPJ_CODEC_J2K);
352 353
    }

354
    if (!dec) {
355
        av_log(avctx, AV_LOG_ERROR, "Error initializing decoder.\n");
356 357
        ret = AVERROR_EXTERNAL;
        goto done;
358
    }
359 360 361 362 363 364 365 366 367 368 369 370

    if (!opj_set_error_handler(dec, error_callback, avctx) ||
        !opj_set_warning_handler(dec, warning_callback, avctx) ||
        !opj_set_info_handler(dec, info_callback, avctx)) {
        av_log(avctx, AV_LOG_ERROR, "Error setting decoder handlers.\n");
        ret = AVERROR_EXTERNAL;
        goto done;
    }

    ctx->dec_params.cp_layer = ctx->lowqual;
    ctx->dec_params.cp_reduce = avctx->lowres;

371 372
    // Tie decoder with decoding parameters
    opj_setup_decoder(dec, &ctx->dec_params);
373 374

    stream = opj_stream_default_create(OPJ_STREAM_READ);
375 376 377 378

    if (!stream) {
        av_log(avctx, AV_LOG_ERROR,
               "Codestream could not be opened for reading.\n");
379 380
        ret = AVERROR_EXTERNAL;
        goto done;
381 382
    }

383 384 385 386 387 388 389
    opj_stream_set_read_function(stream, stream_read);
    opj_stream_set_skip_function(stream, stream_skip);
    opj_stream_set_seek_function(stream, stream_seek);
    opj_stream_set_user_data(stream, &reader, NULL);
    opj_stream_set_user_data_length(stream, avpkt->size);
    // Decode the header only.
    ret = !opj_read_header(stream, dec, &image);
390

391 392 393 394
    if (ret) {
        av_log(avctx, AV_LOG_ERROR, "Error decoding codestream header.\n");
        ret = AVERROR_EXTERNAL;
        goto done;
395
    }
396

397 398
    width  = image->x1 - image->x0;
    height = image->y1 - image->y0;
399

400 401
    ret = ff_set_dimensions(avctx, width, height);
    if (ret < 0)
402 403
        goto done;

404
    if (avctx->pix_fmt != AV_PIX_FMT_NONE)
405
        if (!libopenjpeg_matches_pix_fmt(image, avctx->pix_fmt))
406
            avctx->pix_fmt = AV_PIX_FMT_NONE;
407

408
    if (avctx->pix_fmt == AV_PIX_FMT_NONE)
409 410
        avctx->pix_fmt = libopenjpeg_guess_pix_fmt(image);

411
    if (avctx->pix_fmt == AV_PIX_FMT_NONE) {
412 413
        av_log(avctx, AV_LOG_ERROR, "Unable to determine pixel format.\n");
        ret = AVERROR_UNKNOWN;
414
        goto done;
415
    }
416 417 418
    for (i = 0; i < image->numcomps; i++)
        if (image->comps[i].prec > avctx->bits_per_raw_sample)
            avctx->bits_per_raw_sample = image->comps[i].prec;
419

420
    if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
421
        goto done;
422

423
    ret = !opj_decode(dec, stream, image);
424

425
    if (ret) {
426
        av_log(avctx, AV_LOG_ERROR, "Error decoding codestream.\n");
427
        ret = AVERROR_EXTERNAL;
428
        goto done;
429
    }
430

431 432 433 434 435 436 437 438 439
    for (i = 0; i < image->numcomps; i++) {
        if (!image->comps[i].data) {
            av_log(avctx, AV_LOG_ERROR,
                   "Image component %d contains no data.\n", i);
            ret = AVERROR_INVALIDDATA;
            goto done;
        }
    }

440
    desc       = av_pix_fmt_desc_get(avctx->pix_fmt);
441
    pixel_size = desc->comp[0].step;
442
    ispacked   = libopenjpeg_ispacked(avctx->pix_fmt);
443

444 445 446 447 448 449
    switch (pixel_size) {
    case 1:
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        } else {
            libopenjpeg_copyto8(picture, image);
450
        }
451 452
        break;
    case 2:
453 454 455 456 457
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        } else {
            libopenjpeg_copyto16(picture, image);
        }
458 459
        break;
    case 3:
460
    case 4:
461 462 463 464
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        }
        break;
465
    case 6:
466
    case 8:
467 468 469 470
        if (ispacked) {
            libopenjpeg_copy_to_packed16(picture, image);
        }
        break;
471
    default:
472
        avpriv_report_missing_feature(avctx, "Pixel size %d", pixel_size);
473
        ret = AVERROR_PATCHWELCOME;
474
        goto done;
475 476
    }

477
    *got_frame = 1;
478 479
    picture->pict_type = AV_PICTURE_TYPE_I;
    picture->key_frame = 1;
480
    ret        = buf_size;
481 482 483

done:
    opj_image_destroy(image);
484 485
    opj_stream_destroy(stream);
    opj_destroy_codec(dec);
486 487 488
    return ret;
}

489 490 491 492
#define OFFSET(x) offsetof(LibOpenJPEGContext, x)
#define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM

static const AVOption options[] = {
493 494
    { "lowqual", "Limit the number of layers used for decoding",
        OFFSET(lowqual), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VD },
495 496 497
    { NULL },
};

498
static const AVClass openjpeg_class = {
499 500 501 502 503
    .class_name = "libopenjpeg",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};
504

505
AVCodec ff_libopenjpeg_decoder = {
506 507 508 509 510 511 512
    .name           = "libopenjpeg",
    .long_name      = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = AV_CODEC_ID_JPEG2000,
    .priv_data_size = sizeof(LibOpenJPEGContext),
    .init           = libopenjpeg_decode_init,
    .decode         = libopenjpeg_decode_frame,
513
    .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
514 515
    .max_lowres     = 31,
    .priv_class     = &openjpeg_class,
516
    .wrapper_name   = "libopenjpeg",
517
};