libopenjpegdec.c 19.2 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 27
 * @file
 * JPEG 2000 decoder using libopenjpeg
 */

#define  OPJ_STATIC
28

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

35
#include "avcodec.h"
36
#include "internal.h"
37
#include "thread.h"
38

39 40 41 42 43 44
#if HAVE_OPENJPEG_2_1_OPENJPEG_H
#  include <openjpeg-2.1/openjpeg.h>
#elif HAVE_OPENJPEG_2_0_OPENJPEG_H
#  include <openjpeg-2.0/openjpeg.h>
#elif HAVE_OPENJPEG_1_5_OPENJPEG_H
#  include <openjpeg-1.5/openjpeg.h>
45
#else
46 47 48 49 50 51 52 53 54
#  include <openjpeg.h>
#endif

#if HAVE_OPENJPEG_2_1_OPENJPEG_H || HAVE_OPENJPEG_2_0_OPENJPEG_H
#  define OPENJPEG_MAJOR_VERSION 2
#  define OPJ(x) OPJ_##x
#else
#  define OPENJPEG_MAJOR_VERSION 1
#  define OPJ(x) x
55 56
#endif

57 58 59
#define JP2_SIG_TYPE    0x6A502020
#define JP2_SIG_VALUE   0x0D0A870A

60 61
// pix_fmts with lower bpp have to be listed before
// similar pix_fmts with higher bpp.
62
#define RGB_PIXEL_FORMATS  AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,                 \
63
                           AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64
64

65
#define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8,                  \
66
                           AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16
67

68 69 70 71 72 73 74 75 76 77 78
#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
79

80 81
#define XYZ_PIXEL_FORMATS  AV_PIX_FMT_XYZ12

82
static const enum AVPixelFormat libopenjpeg_rgb_pix_fmts[]  = {
83 84
    RGB_PIXEL_FORMATS
};
85
static const enum AVPixelFormat libopenjpeg_gray_pix_fmts[] = {
86 87
    GRAY_PIXEL_FORMATS
};
88
static const enum AVPixelFormat libopenjpeg_yuv_pix_fmts[]  = {
89 90
    YUV_PIXEL_FORMATS
};
91
static const enum AVPixelFormat libopenjpeg_all_pix_fmts[]  = {
92 93
    RGB_PIXEL_FORMATS, GRAY_PIXEL_FORMATS, YUV_PIXEL_FORMATS, XYZ_PIXEL_FORMATS
};
94

95
typedef struct LibOpenJPEGContext {
96
    AVClass *class;
97
    opj_dparameters_t dec_params;
98
#if OPENJPEG_MAJOR_VERSION == 1
99
    opj_event_mgr_t event_mgr;
100
#endif // OPENJPEG_MAJOR_VERSION == 1
101
    int lowqual;
102 103
} LibOpenJPEGContext;

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
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);
}

119 120 121 122 123 124 125 126 127 128
#if OPENJPEG_MAJOR_VERSION == 2
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;
129 130
    int remaining;

131 132 133
    if (reader->pos == reader->size) {
        return (OPJ_SIZE_T)-1;
    }
134
    remaining = reader->size - reader->pos;
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
    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 {
154 155
        int remaining;

156 157 158
        if (reader->pos == reader->size) {
            return (OPJ_SIZE_T)-1;
        }
159
        remaining = reader->size - reader->pos;
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
        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;
}
#endif // OPENJPEG_MAJOR_VERSION == 2

179
static inline int libopenjpeg_matches_pix_fmt(const opj_image_t *image, enum AVPixelFormat pix_fmt)
180
{
181
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
182
    int match = 1;
183

184
    if (desc->nb_components != image->numcomps) {
185
        return 0;
186 187
    }

188
    switch (desc->nb_components) {
189 190
    case 4:
        match = match &&
191
                desc->comp[3].depth >= image->comps[3].prec &&
192 193
                1 == image->comps[3].dx &&
                1 == image->comps[3].dy;
194 195
    case 3:
        match = match &&
196
                desc->comp[2].depth >= image->comps[2].prec &&
197 198
                1 << desc->log2_chroma_w == image->comps[2].dx &&
                1 << desc->log2_chroma_h == image->comps[2].dy;
199 200
    case 2:
        match = match &&
201
                desc->comp[1].depth >= image->comps[1].prec &&
202 203
                1 << desc->log2_chroma_w == image->comps[1].dx &&
                1 << desc->log2_chroma_h == image->comps[1].dy;
204 205
    case 1:
        match = match &&
206
                desc->comp[0].depth >= image->comps[0].prec &&
207 208
                1 == image->comps[0].dx &&
                1 == image->comps[0].dy;
209 210
    default:
        break;
211 212
    }

213 214
    return match;
}
215

216
static inline enum AVPixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *image) {
217
    int index;
218
    const enum AVPixelFormat *possible_fmts = NULL;
219 220 221
    int possible_fmts_nb = 0;

    switch (image->color_space) {
222
    case OPJ(CLRSPC_SRGB):
223
        possible_fmts    = libopenjpeg_rgb_pix_fmts;
224
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_rgb_pix_fmts);
225
        break;
226
    case OPJ(CLRSPC_GRAY):
227
        possible_fmts    = libopenjpeg_gray_pix_fmts;
228
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_gray_pix_fmts);
229
        break;
230
    case OPJ(CLRSPC_SYCC):
231
        possible_fmts    = libopenjpeg_yuv_pix_fmts;
232
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_yuv_pix_fmts);
233 234
        break;
    default:
235
        possible_fmts    = libopenjpeg_all_pix_fmts;
236
        possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_all_pix_fmts);
237
        break;
238
    }
239

240
    for (index = 0; index < possible_fmts_nb; ++index)
241 242 243
        if (libopenjpeg_matches_pix_fmt(image, possible_fmts[index])) {
            return possible_fmts[index];
        }
244

245
    return AV_PIX_FMT_NONE;
246 247
}

248
static inline int libopenjpeg_ispacked(enum AVPixelFormat pix_fmt)
249
{
250
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
251
    int i, component_plane;
252

253
    if (pix_fmt == AV_PIX_FMT_GRAY16)
254 255
        return 0;

256
    component_plane = desc->comp[0].plane;
257
    for (i = 1; i < desc->nb_components; i++)
258
        if (component_plane != desc->comp[i].plane)
259 260 261 262 263 264 265
            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;
266
    for (y = 0; y < picture->height; y++) {
267 268 269 270
        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++)
271
                *img_ptr++ = 0x80 * image->comps[c].sgnd + image->comps[c].data[index];
272 273 274
    }
}

275 276
static inline void libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image) {
    uint16_t *img_ptr;
277
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
278 279
    int index, x, y, c;
    int adjust[4];
280
    for (x = 0; x < image->numcomps; x++)
281
        adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
282

283
    for (y = 0; y < picture->height; y++) {
284 285 286 287
        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++)
288 289
                *img_ptr++ = (1 << image->comps[c].prec - 1) * image->comps[c].sgnd +
                             (unsigned)image->comps[c].data[index] << adjust[c];
290 291 292
    }
}

293 294 295 296 297
static inline void libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) {
    int *comp_data;
    uint8_t *img_ptr;
    int index, x, y;

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 = picture->data[index] + y * picture->linesize[index];
302
            for (x = 0; x < image->comps[index].w; x++) {
303
                *img_ptr = 0x80 * image->comps[index].sgnd + *comp_data;
304 305 306 307 308 309 310 311 312 313
                img_ptr++;
                comp_data++;
            }
        }
    }
}

static inline void libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) {
    int *comp_data;
    uint16_t *img_ptr;
314
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
315
    int index, x, y;
316 317
    int adjust[4];
    for (x = 0; x < image->numcomps; x++)
318
        adjust[x] = FFMAX(FFMIN(desc->comp[x].depth - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
319

320
    for (index = 0; index < image->numcomps; index++) {
321
        comp_data = image->comps[index].data;
322
        for (y = 0; y < image->comps[index].h; y++) {
323
            img_ptr = (uint16_t *)(picture->data[index] + y * picture->linesize[index]);
324
            for (x = 0; x < image->comps[index].w; x++) {
325 326
                *img_ptr = (1 << image->comps[index].prec - 1) * image->comps[index].sgnd +
                           (unsigned)*comp_data << adjust[index];
327 328 329 330 331
                img_ptr++;
                comp_data++;
            }
        }
    }
332 333 334 335 336 337 338
}

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

    opj_set_default_decoder_parameters(&ctx->dec_params);
339 340 341
    return 0;
}

342
static int libopenjpeg_decode_frame(AVCodecContext *avctx,
343
                                    void *data, int *got_frame,
344
                                    AVPacket *avpkt)
345
{
346 347
    uint8_t *buf            = avpkt->data;
    int buf_size            = avpkt->size;
348
    LibOpenJPEGContext *ctx = avctx->priv_data;
349 350
    ThreadFrame frame       = { .f = data };
    AVFrame *picture        = data;
351
    const AVPixFmtDescriptor *desc;
352
    int width, height, ret;
353
    int pixel_size = 0;
354
    int ispacked   = 0;
355
    int i;
356 357 358 359 360 361 362 363 364
    opj_image_t *image = NULL;
#if OPENJPEG_MAJOR_VERSION == 1
    opj_dinfo_t *dec = NULL;
    opj_cio_t *stream = NULL;
#else // OPENJPEG_MAJOR_VERSION == 2
    BufferReader reader = {0, avpkt->size, avpkt->data};
    opj_codec_t *dec = NULL;
    opj_stream_t *stream = NULL;
#endif // OPENJPEG_MAJOR_VERSION == 1
365

366
    *got_frame = 0;
367 368

    // Check if input is a raw jpeg2k codestream or in jp2 wrapping
369
    if ((AV_RB32(buf) == 12) &&
370 371
        (AV_RB32(buf + 4) == JP2_SIG_TYPE) &&
        (AV_RB32(buf + 8) == JP2_SIG_VALUE)) {
372
        dec = opj_create_decompress(OPJ(CODEC_JP2));
373
    } else {
374 375
        /* If the AVPacket contains a jp2c box, then skip to
         * the starting byte of the codestream. */
376 377
        if (AV_RB32(buf + 4) == AV_RB32("jp2c"))
            buf += 8;
378
        dec = opj_create_decompress(OPJ(CODEC_J2K));
379 380
    }

381
    if (!dec) {
382
        av_log(avctx, AV_LOG_ERROR, "Error initializing decoder.\n");
383 384
        ret = AVERROR_EXTERNAL;
        goto done;
385
    }
386 387

#if OPENJPEG_MAJOR_VERSION == 1
388 389 390 391 392
    memset(&ctx->event_mgr, 0, sizeof(ctx->event_mgr));
    ctx->event_mgr.info_handler    = info_callback;
    ctx->event_mgr.error_handler   = error_callback;
    ctx->event_mgr.warning_handler = warning_callback;
    opj_set_event_mgr((opj_common_ptr) dec, &ctx->event_mgr, avctx);
393
    ctx->dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
394
    ctx->dec_params.cp_layer          = ctx->lowqual;
395 396 397 398 399 400 401 402 403 404 405 406 407
#else // OPENJPEG_MAJOR_VERSION == 2
    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;
#endif // OPENJPEG_MAJOR_VERSION == 1

408 409
    // Tie decoder with decoding parameters
    opj_setup_decoder(dec, &ctx->dec_params);
410 411

#if OPENJPEG_MAJOR_VERSION == 1
412
    stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
413 414 415
#else // OPENJPEG_MAJOR_VERSION == 2
    stream = opj_stream_default_create(OPJ_STREAM_READ);
#endif // OPENJPEG_MAJOR_VERSION == 1
416 417 418 419

    if (!stream) {
        av_log(avctx, AV_LOG_ERROR,
               "Codestream could not be opened for reading.\n");
420 421
        ret = AVERROR_EXTERNAL;
        goto done;
422 423
    }

424
#if OPENJPEG_MAJOR_VERSION == 1
425
    // Decode the header only.
426 427
    image = opj_decode_with_info(dec, stream, NULL);
    opj_cio_close(stream);
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
    stream = NULL;
    ret = !image;
#else // OPENJPEG_MAJOR_VERSION == 2
    opj_stream_set_read_function(stream, stream_read);
    opj_stream_set_skip_function(stream, stream_skip);
    opj_stream_set_seek_function(stream, stream_seek);
#if HAVE_OPENJPEG_2_1_OPENJPEG_H
    opj_stream_set_user_data(stream, &reader, NULL);
#elif HAVE_OPENJPEG_2_0_OPENJPEG_H
    opj_stream_set_user_data(stream, &reader);
#else
#error Missing call to opj_stream_set_user_data
#endif
    opj_stream_set_user_data_length(stream, avpkt->size);
    // Decode the header only.
    ret = !opj_read_header(stream, dec, &image);
#endif // OPENJPEG_MAJOR_VERSION == 1
445

446 447 448 449
    if (ret) {
        av_log(avctx, AV_LOG_ERROR, "Error decoding codestream header.\n");
        ret = AVERROR_EXTERNAL;
        goto done;
450
    }
451

452 453
    width  = image->x1 - image->x0;
    height = image->y1 - image->y0;
454

455 456
    ret = ff_set_dimensions(avctx, width, height);
    if (ret < 0)
457 458
        goto done;

459
    if (avctx->pix_fmt != AV_PIX_FMT_NONE)
460
        if (!libopenjpeg_matches_pix_fmt(image, avctx->pix_fmt))
461
            avctx->pix_fmt = AV_PIX_FMT_NONE;
462

463
    if (avctx->pix_fmt == AV_PIX_FMT_NONE)
464 465
        avctx->pix_fmt = libopenjpeg_guess_pix_fmt(image);

466
    if (avctx->pix_fmt == AV_PIX_FMT_NONE) {
467 468
        av_log(avctx, AV_LOG_ERROR, "Unable to determine pixel format.\n");
        ret = AVERROR_UNKNOWN;
469
        goto done;
470
    }
471 472 473
    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;
474

475
    if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
476
        goto done;
477

478
#if OPENJPEG_MAJOR_VERSION == 1
479
    ctx->dec_params.cp_limit_decoding = NO_LIMITATION;
Michael Niedermayer's avatar
Michael Niedermayer committed
480
    ctx->dec_params.cp_reduce = avctx->lowres;
481
    // Tie decoder with decoding parameters.
482
    opj_setup_decoder(dec, &ctx->dec_params);
483
    stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
484 485 486
    if (!stream) {
        av_log(avctx, AV_LOG_ERROR,
               "Codestream could not be opened for reading.\n");
487
        ret = AVERROR_EXTERNAL;
488
        goto done;
489
    }
490
    opj_image_destroy(image);
491
    // Decode the codestream
492
    image = opj_decode_with_info(dec, stream, NULL);
493 494 495 496
    ret = !image;
#else // OPENJPEG_MAJOR_VERSION == 2
    ret = !opj_decode(dec, stream, image);
#endif // OPENJPEG_MAJOR_VERSION == 1
497

498
    if (ret) {
499
        av_log(avctx, AV_LOG_ERROR, "Error decoding codestream.\n");
500
        ret = AVERROR_EXTERNAL;
501
        goto done;
502
    }
503

504 505 506 507 508 509 510 511 512
    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;
        }
    }

513
    desc       = av_pix_fmt_desc_get(avctx->pix_fmt);
514
    pixel_size = desc->comp[0].step;
515
    ispacked   = libopenjpeg_ispacked(avctx->pix_fmt);
516

517 518 519 520 521 522
    switch (pixel_size) {
    case 1:
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        } else {
            libopenjpeg_copyto8(picture, image);
523
        }
524 525
        break;
    case 2:
526 527 528 529 530
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        } else {
            libopenjpeg_copyto16(picture, image);
        }
531 532
        break;
    case 3:
533
    case 4:
534 535 536 537
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        }
        break;
538
    case 6:
539
    case 8:
540 541 542 543
        if (ispacked) {
            libopenjpeg_copy_to_packed16(picture, image);
        }
        break;
544 545
    default:
        av_log(avctx, AV_LOG_ERROR, "unsupported pixel size %d\n", pixel_size);
546
        ret = AVERROR_PATCHWELCOME;
547
        goto done;
548 549
    }

550
    *got_frame = 1;
551
    ret        = buf_size;
552 553 554

done:
    opj_image_destroy(image);
555 556 557 558 559
#if OPENJPEG_MAJOR_VERSION == 2
    opj_stream_destroy(stream);
    opj_destroy_codec(dec);
#else
    opj_cio_close(stream);
560
    opj_destroy_decompress(dec);
561
#endif
562 563 564
    return ret;
}

565 566 567 568 569 570
static av_cold void libopenjpeg_static_init(AVCodec *codec)
{
    const char *version = opj_version();
    int major, minor;

    if (sscanf(version, "%d.%d", &major, &minor) == 2 && 1000*major + minor <= 1003)
571
        codec->capabilities |= AV_CODEC_CAP_EXPERIMENTAL;
572 573
}

574 575 576 577
#define OFFSET(x) offsetof(LibOpenJPEGContext, x)
#define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM

static const AVOption options[] = {
578 579
    { "lowqual", "Limit the number of layers used for decoding",
        OFFSET(lowqual), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VD },
580 581 582
    { NULL },
};

583
static const AVClass openjpeg_class = {
584 585 586 587 588
    .class_name = "libopenjpeg",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};
589

590
AVCodec ff_libopenjpeg_decoder = {
591 592 593 594 595 596 597
    .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,
598
    .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
599 600
    .max_lowres     = 31,
    .priv_class     = &openjpeg_class,
601
    .init_static_data = libopenjpeg_static_init,
602
};