libopenjpegenc.c 23.9 KB
Newer Older
1 2
/*
 * JPEG 2000 encoding support via OpenJPEG
3
 * Copyright (c) 2011 Michael Bradshaw <mjbshaw gmail com>
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * 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
 * @file
 * JPEG 2000 encoder using libopenjpeg
 */
26

27 28
#define  OPJ_STATIC

29
#include "libavutil/avassert.h"
30
#include "libavutil/common.h"
31
#include "libavutil/imgutils.h"
32
#include "libavutil/intreadwrite.h"
33
#include "libavutil/opt.h"
34
#include "avcodec.h"
35
#include "internal.h"
36

37 38 39 40 41 42
#if HAVE_OPENJPEG_1_5_OPENJPEG_H
# include <openjpeg-1.5/openjpeg.h>
#else
# include <openjpeg.h>
#endif

43
typedef struct LibOpenJPEGContext {
44
    AVClass *avclass;
45 46 47
    opj_image_t *image;
    opj_cparameters_t enc_params;
    opj_event_mgr_t event_mgr;
48 49 50
    int format;
    int profile;
    int prog_order;
51
    int cinema_mode;
52 53 54 55 56
    int numresolution;
    int numlayers;
    int disto_alloc;
    int fixed_alloc;
    int fixed_quality;
57 58 59 60
} LibOpenJPEGContext;

static void error_callback(const char *msg, void *data)
{
61
    av_log(data, AV_LOG_ERROR, "%s\n", msg);
62 63 64 65
}

static void warning_callback(const char *msg, void *data)
{
66 67 68 69 70 71
    av_log(data, AV_LOG_WARNING, "%s\n", msg);
}

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

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
static void cinema_parameters(opj_cparameters_t *p)
{
    p->tile_size_on = 0;
    p->cp_tdx = 1;
    p->cp_tdy = 1;

    /* Tile part */
    p->tp_flag = 'C';
    p->tp_on = 1;

    /* Tile and Image shall be at (0, 0) */
    p->cp_tx0 = 0;
    p->cp_ty0 = 0;
    p->image_offset_x0 = 0;
    p->image_offset_y0 = 0;

    /* Codeblock size= 32 * 32 */
    p->cblockw_init = 32;
    p->cblockh_init = 32;
    p->csty |= 0x01;

    /* The progression order shall be CPRL */
    p->prog_order = CPRL;

    /* No ROI */
    p->roi_compno = -1;

    /* No subsampling */
    p->subsampling_dx = 1;
    p->subsampling_dy = 1;

    /* 9-7 transform */
    p->irreversible = 1;

    p->tcp_mct = 1;
}

111 112
static opj_image_t *mj2_create_image(AVCodecContext *avctx, opj_cparameters_t *parameters)
{
113
    const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
114
    opj_image_cmptparm_t cmptparm[4] = {{0}};
115 116 117 118
    opj_image_t *img;
    int i;
    int sub_dx[4];
    int sub_dy[4];
119
    int numcomps;
120 121
    OPJ_COLOR_SPACE color_space = CLRSPC_UNKNOWN;

122 123
    sub_dx[0] = sub_dx[3] = 1;
    sub_dy[0] = sub_dy[3] = 1;
124 125
    sub_dx[1] = sub_dx[2] = 1 << desc->log2_chroma_w;
    sub_dy[1] = sub_dy[2] = 1 << desc->log2_chroma_h;
126

127
    numcomps = desc->nb_components;
128

129
    switch (avctx->pix_fmt) {
130
    case AV_PIX_FMT_GRAY8:
131
    case AV_PIX_FMT_YA8:
132
    case AV_PIX_FMT_GRAY16:
133
    case AV_PIX_FMT_YA16:
134 135
        color_space = CLRSPC_GRAY;
        break;
136 137 138
    case AV_PIX_FMT_RGB24:
    case AV_PIX_FMT_RGBA:
    case AV_PIX_FMT_RGB48:
139
    case AV_PIX_FMT_RGBA64:
140 141 142 143 144 145
    case AV_PIX_FMT_GBR24P:
    case AV_PIX_FMT_GBRP9:
    case AV_PIX_FMT_GBRP10:
    case AV_PIX_FMT_GBRP12:
    case AV_PIX_FMT_GBRP14:
    case AV_PIX_FMT_GBRP16:
146
    case AV_PIX_FMT_XYZ12:
147 148
        color_space = CLRSPC_SRGB;
        break;
149 150 151 152 153 154 155
    case AV_PIX_FMT_YUV410P:
    case AV_PIX_FMT_YUV411P:
    case AV_PIX_FMT_YUV420P:
    case AV_PIX_FMT_YUV422P:
    case AV_PIX_FMT_YUV440P:
    case AV_PIX_FMT_YUV444P:
    case AV_PIX_FMT_YUVA420P:
156 157
    case AV_PIX_FMT_YUVA422P:
    case AV_PIX_FMT_YUVA444P:
158 159 160
    case AV_PIX_FMT_YUV420P9:
    case AV_PIX_FMT_YUV422P9:
    case AV_PIX_FMT_YUV444P9:
161 162 163
    case AV_PIX_FMT_YUVA420P9:
    case AV_PIX_FMT_YUVA422P9:
    case AV_PIX_FMT_YUVA444P9:
164 165 166
    case AV_PIX_FMT_YUV420P10:
    case AV_PIX_FMT_YUV422P10:
    case AV_PIX_FMT_YUV444P10:
167 168 169
    case AV_PIX_FMT_YUVA420P10:
    case AV_PIX_FMT_YUVA422P10:
    case AV_PIX_FMT_YUVA444P10:
170 171 172 173 174 175
    case AV_PIX_FMT_YUV420P12:
    case AV_PIX_FMT_YUV422P12:
    case AV_PIX_FMT_YUV444P12:
    case AV_PIX_FMT_YUV420P14:
    case AV_PIX_FMT_YUV422P14:
    case AV_PIX_FMT_YUV444P14:
176 177 178
    case AV_PIX_FMT_YUV420P16:
    case AV_PIX_FMT_YUV422P16:
    case AV_PIX_FMT_YUV444P16:
179 180 181
    case AV_PIX_FMT_YUVA420P16:
    case AV_PIX_FMT_YUVA422P16:
    case AV_PIX_FMT_YUVA444P16:
182
        color_space = CLRSPC_SYCC;
183 184
        break;
    default:
185 186 187
        av_log(avctx, AV_LOG_ERROR,
               "The requested pixel format '%s' is not supported\n",
               av_get_pix_fmt_name(avctx->pix_fmt));
188 189 190 191
        return NULL;
    }

    for (i = 0; i < numcomps; i++) {
192 193
        cmptparm[i].prec = desc->comp[i].depth_minus1 + 1;
        cmptparm[i].bpp  = desc->comp[i].depth_minus1 + 1;
194 195 196
        cmptparm[i].sgnd = 0;
        cmptparm[i].dx = sub_dx[i];
        cmptparm[i].dy = sub_dy[i];
197 198
        cmptparm[i].w = (avctx->width + sub_dx[i] - 1) / sub_dx[i];
        cmptparm[i].h = (avctx->height + sub_dy[i] - 1) / sub_dy[i];
199 200 201
    }

    img = opj_image_create(numcomps, cmptparm, color_space);
202 203 204 205 206 207 208 209

    // x0, y0 is the top left corner of the image
    // x1, y1 is the width, height of the reference grid
    img->x0 = 0;
    img->y0 = 0;
    img->x1 = (avctx->width  - 1) * parameters->subsampling_dx + 1;
    img->y1 = (avctx->height - 1) * parameters->subsampling_dy + 1;

210 211 212 213 214 215
    return img;
}

static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx)
{
    LibOpenJPEGContext *ctx = avctx->priv_data;
216
    int err = AVERROR(ENOMEM);
217 218

    opj_set_default_encoder_parameters(&ctx->enc_params);
219

220 221 222 223 224 225 226 227 228
    ctx->enc_params.cp_rsiz = ctx->profile;
    ctx->enc_params.mode = !!avctx->global_quality;
    ctx->enc_params.cp_cinema = ctx->cinema_mode;
    ctx->enc_params.prog_order = ctx->prog_order;
    ctx->enc_params.numresolution = ctx->numresolution;
    ctx->enc_params.cp_disto_alloc = ctx->disto_alloc;
    ctx->enc_params.cp_fixed_alloc = ctx->fixed_alloc;
    ctx->enc_params.cp_fixed_quality = ctx->fixed_quality;
    ctx->enc_params.tcp_numlayers = ctx->numlayers;
229
    ctx->enc_params.tcp_rates[0] = FFMAX(avctx->compression_level, 0) * 2;
230

231
    if (ctx->cinema_mode > 0) {
232
        cinema_parameters(&ctx->enc_params);
233 234
    }

235 236 237
    ctx->image = mj2_create_image(avctx, &ctx->enc_params);
    if (!ctx->image) {
        av_log(avctx, AV_LOG_ERROR, "Error creating the mj2 image\n");
238 239
        err = AVERROR(EINVAL);
        goto fail;
240
    }
241

242
    avctx->coded_frame = av_frame_alloc();
243 244 245 246
    if (!avctx->coded_frame) {
        av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
        goto fail;
    }
247 248

    return 0;
249 250

fail:
251 252
    opj_image_destroy(ctx->image);
    ctx->image = NULL;
253
    av_frame_free(&avctx->coded_frame);
254
    return err;
255 256
}

257
static int libopenjpeg_copy_packed8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
258 259 260 261
{
    int compno;
    int x;
    int y;
262
    int *image_line;
263
    int frame_index;
264
    const int numcomps = image->numcomps;
265 266 267

    for (compno = 0; compno < numcomps; ++compno) {
        if (image->comps[compno].w > frame->linesize[0] / numcomps) {
268
            av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
269 270 271 272 273 274
            return 0;
        }
    }

    for (compno = 0; compno < numcomps; ++compno) {
        for (y = 0; y < avctx->height; ++y) {
275
            image_line = image->comps[compno].data + y * image->comps[compno].w;
276
            frame_index = y * frame->linesize[0] + compno;
277
            for (x = 0; x < avctx->width; ++x) {
278
                image_line[x] = frame->data[0][frame_index];
279
                frame_index += numcomps;
280
            }
281 282 283 284 285 286 287 288 289
            for (; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - 1];
            }
        }
        for (; y < image->comps[compno].h; ++y) {
            image_line = image->comps[compno].data + y * image->comps[compno].w;
            for (x = 0; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - image->comps[compno].w];
            }
290 291 292 293 294 295
        }
    }

    return 1;
}

296 297 298 299
// for XYZ 12 bit
static int libopenjpeg_copy_packed12(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
{
    int compno;
300
    int x, y;
301
    int *image_line;
302
    int frame_index;
303 304
    const int numcomps  = image->numcomps;
    uint16_t *frame_ptr = (uint16_t *)frame->data[0];
305 306 307 308 309 310 311 312 313 314

    for (compno = 0; compno < numcomps; ++compno) {
        if (image->comps[compno].w > frame->linesize[0] / numcomps) {
            av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
            return 0;
        }
    }

    for (compno = 0; compno < numcomps; ++compno) {
        for (y = 0; y < avctx->height; ++y) {
315
            image_line = image->comps[compno].data + y * image->comps[compno].w;
316 317
            frame_index = y * (frame->linesize[0] / 2) + compno;
            for (x = 0; x < avctx->width; ++x) {
318
                image_line[x] = frame_ptr[frame_index] >> 4;
319 320
                frame_index += numcomps;
            }
321 322 323 324 325 326 327 328 329
            for (; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - 1];
            }
        }
        for (; y < image->comps[compno].h; ++y) {
            image_line = image->comps[compno].data + y * image->comps[compno].w;
            for (x = 0; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - image->comps[compno].w];
            }
330 331 332 333 334 335
        }
    }

    return 1;
}

336
static int libopenjpeg_copy_packed16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
337 338 339 340
{
    int compno;
    int x;
    int y;
341
    int *image_line;
342
    int frame_index;
343
    const int numcomps = image->numcomps;
344 345 346 347
    uint16_t *frame_ptr = (uint16_t*)frame->data[0];

    for (compno = 0; compno < numcomps; ++compno) {
        if (image->comps[compno].w > frame->linesize[0] / numcomps) {
348
            av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
349 350 351 352 353 354
            return 0;
        }
    }

    for (compno = 0; compno < numcomps; ++compno) {
        for (y = 0; y < avctx->height; ++y) {
355
            image_line = image->comps[compno].data + y * image->comps[compno].w;
356
            frame_index = y * (frame->linesize[0] / 2) + compno;
357
            for (x = 0; x < avctx->width; ++x) {
358
                image_line[x] = frame_ptr[frame_index];
359
                frame_index += numcomps;
360
            }
361 362 363 364 365 366 367 368 369
            for (; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - 1];
            }
        }
        for (; y < image->comps[compno].h; ++y) {
            image_line = image->comps[compno].data + y * image->comps[compno].w;
            for (x = 0; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - image->comps[compno].w];
            }
370 371 372 373 374 375
        }
    }

    return 1;
}

376
static int libopenjpeg_copy_unpacked8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
377 378 379 380 381 382
{
    int compno;
    int x;
    int y;
    int width;
    int height;
383
    int *image_line;
384
    int frame_index;
385
    const int numcomps = image->numcomps;
386 387 388

    for (compno = 0; compno < numcomps; ++compno) {
        if (image->comps[compno].w > frame->linesize[compno]) {
389
            av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
390 391 392 393 394
            return 0;
        }
    }

    for (compno = 0; compno < numcomps; ++compno) {
395
        width  = avctx->width / image->comps[compno].dx;
396 397
        height = avctx->height / image->comps[compno].dy;
        for (y = 0; y < height; ++y) {
398
            image_line = image->comps[compno].data + y * image->comps[compno].w;
399
            frame_index = y * frame->linesize[compno];
400
            for (x = 0; x < width; ++x)
401 402 403 404 405 406 407 408 409 410
                image_line[x] = frame->data[compno][frame_index++];
            for (; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - 1];
            }
        }
        for (; y < image->comps[compno].h; ++y) {
            image_line = image->comps[compno].data + y * image->comps[compno].w;
            for (x = 0; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - image->comps[compno].w];
            }
411 412 413 414 415 416
        }
    }

    return 1;
}

417
static int libopenjpeg_copy_unpacked16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
418 419 420 421 422 423
{
    int compno;
    int x;
    int y;
    int width;
    int height;
424
    int *image_line;
425
    int frame_index;
426
    const int numcomps = image->numcomps;
427 428 429 430
    uint16_t *frame_ptr;

    for (compno = 0; compno < numcomps; ++compno) {
        if (image->comps[compno].w > frame->linesize[compno]) {
431
            av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
432 433 434 435 436
            return 0;
        }
    }

    for (compno = 0; compno < numcomps; ++compno) {
437 438 439
        width     = avctx->width / image->comps[compno].dx;
        height    = avctx->height / image->comps[compno].dy;
        frame_ptr = (uint16_t *)frame->data[compno];
440
        for (y = 0; y < height; ++y) {
441
            image_line = image->comps[compno].data + y * image->comps[compno].w;
442
            frame_index = y * (frame->linesize[compno] / 2);
443
            for (x = 0; x < width; ++x)
444 445 446 447 448 449 450 451 452 453
                image_line[x] = frame_ptr[frame_index++];
            for (; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - 1];
            }
        }
        for (; y < image->comps[compno].h; ++y) {
            image_line = image->comps[compno].data + y * image->comps[compno].w;
            for (x = 0; x < image->comps[compno].w; ++x) {
                image_line[x] = image_line[x - image->comps[compno].w];
            }
454 455 456 457 458 459
        }
    }

    return 1;
}

460 461
static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                                    const AVFrame *frame, int *got_packet)
462 463
{
    LibOpenJPEGContext *ctx = avctx->priv_data;
464
    opj_image_t *image      = ctx->image;
465 466
    opj_cinfo_t *compress   = NULL;
    opj_cio_t *stream       = NULL;
467
    int cpyresult = 0;
468
    int ret, len;
469
    AVFrame *gbrframe;
470 471

    switch (avctx->pix_fmt) {
472 473
    case AV_PIX_FMT_RGB24:
    case AV_PIX_FMT_RGBA:
474
    case AV_PIX_FMT_YA8:
475
        cpyresult = libopenjpeg_copy_packed8(avctx, frame, image);
476
        break;
477 478 479
    case AV_PIX_FMT_XYZ12:
        cpyresult = libopenjpeg_copy_packed12(avctx, frame, image);
        break;
480
    case AV_PIX_FMT_RGB48:
481
    case AV_PIX_FMT_RGBA64:
482
    case AV_PIX_FMT_YA16:
483
        cpyresult = libopenjpeg_copy_packed16(avctx, frame, image);
484
        break;
485 486 487 488 489 490
    case AV_PIX_FMT_GBR24P:
    case AV_PIX_FMT_GBRP9:
    case AV_PIX_FMT_GBRP10:
    case AV_PIX_FMT_GBRP12:
    case AV_PIX_FMT_GBRP14:
    case AV_PIX_FMT_GBRP16:
491
        gbrframe = av_frame_clone(frame);
492 493
        if (!gbrframe)
            return AVERROR(ENOMEM);
494 495 496 497 498 499
        gbrframe->data[0] = frame->data[2]; // swap to be rgb
        gbrframe->data[1] = frame->data[0];
        gbrframe->data[2] = frame->data[1];
        gbrframe->linesize[0] = frame->linesize[2];
        gbrframe->linesize[1] = frame->linesize[0];
        gbrframe->linesize[2] = frame->linesize[1];
500
        if (avctx->pix_fmt == AV_PIX_FMT_GBR24P) {
501
            cpyresult = libopenjpeg_copy_unpacked8(avctx, gbrframe, image);
502
        } else {
503
            cpyresult = libopenjpeg_copy_unpacked16(avctx, gbrframe, image);
504
        }
505
        av_frame_free(&gbrframe);
506
        break;
507 508 509 510 511 512 513 514
    case AV_PIX_FMT_GRAY8:
    case AV_PIX_FMT_YUV410P:
    case AV_PIX_FMT_YUV411P:
    case AV_PIX_FMT_YUV420P:
    case AV_PIX_FMT_YUV422P:
    case AV_PIX_FMT_YUV440P:
    case AV_PIX_FMT_YUV444P:
    case AV_PIX_FMT_YUVA420P:
515 516
    case AV_PIX_FMT_YUVA422P:
    case AV_PIX_FMT_YUVA444P:
517
        cpyresult = libopenjpeg_copy_unpacked8(avctx, frame, image);
518
        break;
519 520 521 522
    case AV_PIX_FMT_GRAY16:
    case AV_PIX_FMT_YUV420P9:
    case AV_PIX_FMT_YUV422P9:
    case AV_PIX_FMT_YUV444P9:
523 524 525
    case AV_PIX_FMT_YUVA420P9:
    case AV_PIX_FMT_YUVA422P9:
    case AV_PIX_FMT_YUVA444P9:
526 527 528
    case AV_PIX_FMT_YUV444P10:
    case AV_PIX_FMT_YUV422P10:
    case AV_PIX_FMT_YUV420P10:
529 530 531
    case AV_PIX_FMT_YUVA444P10:
    case AV_PIX_FMT_YUVA422P10:
    case AV_PIX_FMT_YUVA420P10:
532 533 534 535 536 537
    case AV_PIX_FMT_YUV420P12:
    case AV_PIX_FMT_YUV422P12:
    case AV_PIX_FMT_YUV444P12:
    case AV_PIX_FMT_YUV420P14:
    case AV_PIX_FMT_YUV422P14:
    case AV_PIX_FMT_YUV444P14:
538 539 540
    case AV_PIX_FMT_YUV444P16:
    case AV_PIX_FMT_YUV422P16:
    case AV_PIX_FMT_YUV420P16:
541 542 543
    case AV_PIX_FMT_YUVA444P16:
    case AV_PIX_FMT_YUVA422P16:
    case AV_PIX_FMT_YUVA420P16:
544
        cpyresult = libopenjpeg_copy_unpacked16(avctx, frame, image);
545 546
        break;
    default:
547 548 549
        av_log(avctx, AV_LOG_ERROR,
               "The frame's pixel format '%s' is not supported\n",
               av_get_pix_fmt_name(avctx->pix_fmt));
550 551 552 553 554
        return AVERROR(EINVAL);
        break;
    }

    if (!cpyresult) {
555 556
        av_log(avctx, AV_LOG_ERROR,
               "Could not copy the frame data to the internal image buffer\n");
557 558 559
        return -1;
    }

560 561 562 563 564 565
    compress = opj_create_compress(ctx->format);
    if (!compress) {
        av_log(avctx, AV_LOG_ERROR, "Error creating the compressor\n");
        return AVERROR(ENOMEM);
    }

566 567 568 569 570 571 572 573
    opj_setup_encoder(compress, &ctx->enc_params, image);

    stream = opj_cio_open((opj_common_ptr) compress, NULL, 0);
    if (!stream) {
        av_log(avctx, AV_LOG_ERROR, "Error creating the cio stream\n");
        return AVERROR(ENOMEM);
    }

574 575 576 577 578 579
    memset(&ctx->event_mgr, 0, sizeof(opj_event_mgr_t));
    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) compress, &ctx->event_mgr, avctx);

580 581 582 583 584 585
    if (!opj_encode(compress, stream, image, NULL)) {
        av_log(avctx, AV_LOG_ERROR, "Error during the opj encode\n");
        return -1;
    }

    len = cio_tell(stream);
586 587
    if ((ret = ff_alloc_packet2(avctx, pkt, len)) < 0) {
        return ret;
588 589
    }

590 591 592
    memcpy(pkt->data, stream->buffer, len);
    pkt->flags |= AV_PKT_FLAG_KEY;
    *got_packet = 1;
593 594 595 596 597 598

    opj_cio_close(stream);
    stream = NULL;
    opj_destroy_compress(compress);
    compress = NULL;

599
    return 0;
600 601 602 603 604 605 606
}

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

    opj_image_destroy(ctx->image);
607
    ctx->image = NULL;
608
    av_frame_free(&avctx->coded_frame);
609
    return 0;
610 611
}

612 613 614
#define OFFSET(x) offsetof(LibOpenJPEGContext, x)
#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static const AVOption options[] = {
615
    { "format",        "Codec Format",      OFFSET(format),        AV_OPT_TYPE_INT,   { .i64 = CODEC_JP2   }, CODEC_J2K, CODEC_JP2,   VE, "format"      },
616 617
    { "j2k",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K   }, 0,         0,           VE, "format"      },
    { "jp2",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2   }, 0,         0,           VE, "format"      },
618
    { "profile",       NULL,                OFFSET(profile),       AV_OPT_TYPE_INT,   { .i64 = STD_RSIZ    }, STD_RSIZ,  CINEMA4K,    VE, "profile"     },
619 620 621
    { "jpeg2000",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = STD_RSIZ    }, 0,         0,           VE, "profile"     },
    { "cinema2k",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA2K    }, 0,         0,           VE, "profile"     },
    { "cinema4k",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA4K    }, 0,         0,           VE, "profile"     },
622
    { "cinema_mode",   "Digital Cinema",    OFFSET(cinema_mode),   AV_OPT_TYPE_INT,   { .i64 = OFF         }, OFF,       CINEMA4K_24, VE, "cinema_mode" },
623 624 625 626
    { "off",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OFF         }, 0,         0,           VE, "cinema_mode" },
    { "2k_24",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_24 }, 0,         0,           VE, "cinema_mode" },
    { "2k_48",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_48 }, 0,         0,           VE, "cinema_mode" },
    { "4k_24",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA4K_24 }, 0,         0,           VE, "cinema_mode" },
627
    { "prog_order",    "Progression Order", OFFSET(prog_order),    AV_OPT_TYPE_INT,   { .i64 = LRCP        }, LRCP,      CPRL,        VE, "prog_order"  },
628 629 630 631 632
    { "lrcp",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = LRCP        }, 0,         0,           VE, "prog_order"  },
    { "rlcp",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = RLCP        }, 0,         0,           VE, "prog_order"  },
    { "rpcl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = RPCL        }, 0,         0,           VE, "prog_order"  },
    { "pcrl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = PCRL        }, 0,         0,           VE, "prog_order"  },
    { "cprl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CPRL        }, 0,         0,           VE, "prog_order"  },
633 634 635 636 637
    { "numresolution", NULL,                OFFSET(numresolution), AV_OPT_TYPE_INT,   { .i64 = 6           }, 1,         INT_MAX,     VE                },
    { "numlayers",     NULL,                OFFSET(numlayers),     AV_OPT_TYPE_INT,   { .i64 = 1           }, 1,         10,          VE                },
    { "disto_alloc",   NULL,                OFFSET(disto_alloc),   AV_OPT_TYPE_INT,   { .i64 = 1           }, 0,         1,           VE                },
    { "fixed_alloc",   NULL,                OFFSET(fixed_alloc),   AV_OPT_TYPE_INT,   { .i64 = 0           }, 0,         1,           VE                },
    { "fixed_quality", NULL,                OFFSET(fixed_quality), AV_OPT_TYPE_INT,   { .i64 = 0           }, 0,         1,           VE                },
638 639 640
    { NULL },
};

641
static const AVClass openjpeg_class = {
642 643 644 645 646
    .class_name = "libopenjpeg",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};
647 648

AVCodec ff_libopenjpeg_encoder = {
649
    .name           = "libopenjpeg",
650
    .long_name      = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
651
    .type           = AVMEDIA_TYPE_VIDEO,
652
    .id             = AV_CODEC_ID_JPEG2000,
653
    .priv_data_size = sizeof(LibOpenJPEGContext),
654
    .init           = libopenjpeg_encode_init,
655
    .encode2        = libopenjpeg_encode_frame,
656
    .close          = libopenjpeg_encode_close,
657
    .capabilities   = CODEC_CAP_FRAME_THREADS | CODEC_CAP_INTRA_ONLY,
658 659
    .pix_fmts       = (const enum AVPixelFormat[]) {
        AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, AV_PIX_FMT_RGB48,
660
        AV_PIX_FMT_RGBA64, AV_PIX_FMT_GBR24P,
661
        AV_PIX_FMT_GBRP9, AV_PIX_FMT_GBRP10, AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRP14, AV_PIX_FMT_GBRP16,
662
        AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8, AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16,
663
        AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA420P,
664 665
        AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA422P,
        AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUVA444P,
666
        AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
667
        AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9,
668
        AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
669
        AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10,
670 671
        AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12,
        AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14,
672
        AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
673
        AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16,
674
        AV_PIX_FMT_XYZ12,
675
        AV_PIX_FMT_NONE
676
    },
677
    .priv_class     = &openjpeg_class,
678
};