]> git.sesse.net Git - ffmpeg/blob - libavcodec/libopenjpegenc.c
Merge commit 'edaba18021e4793116f0f266e65077578a5e742e'
[ffmpeg] / libavcodec / libopenjpegenc.c
1 /*
2  * JPEG 2000 encoding support via OpenJPEG
3  * Copyright (c) 2011 Michael Bradshaw <mjbshaw gmail com>
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 /**
23  * @file
24  * JPEG 2000 encoder using libopenjpeg
25  */
26
27 #define  OPJ_STATIC
28
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 #if HAVE_OPENJPEG_1_5_OPENJPEG_H
38 # include <openjpeg-1.5/openjpeg.h>
39 #else
40 # include <openjpeg.h>
41 #endif
42
43 typedef struct {
44     AVClass *avclass;
45     opj_image_t *image;
46     opj_cio_t *stream;
47     opj_cparameters_t enc_params;
48     opj_cinfo_t *compress;
49     opj_event_mgr_t event_mgr;
50     int format;
51     int profile;
52     int prog_order;
53     int cinema_mode;
54     int numresolution;
55     int numlayers;
56     int disto_alloc;
57     int fixed_alloc;
58     int fixed_quality;
59 } LibOpenJPEGContext;
60
61 static void error_callback(const char *msg, void *data)
62 {
63     av_log(data, AV_LOG_ERROR, "%s\n", msg);
64 }
65
66 static void warning_callback(const char *msg, void *data)
67 {
68     av_log(data, AV_LOG_WARNING, "%s\n", msg);
69 }
70
71 static void info_callback(const char *msg, void *data)
72 {
73     av_log(data, AV_LOG_DEBUG, "%s\n", msg);
74 }
75
76 static opj_image_t *mj2_create_image(AVCodecContext *avctx, opj_cparameters_t *parameters)
77 {
78     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
79     opj_image_cmptparm_t cmptparm[4] = {{0}};
80     opj_image_t *img;
81     int i;
82     int sub_dx[4];
83     int sub_dy[4];
84     int numcomps;
85     OPJ_COLOR_SPACE color_space = CLRSPC_UNKNOWN;
86
87     sub_dx[0] = sub_dx[3] = 1;
88     sub_dy[0] = sub_dy[3] = 1;
89     sub_dx[1] = sub_dx[2] = 1 << desc->log2_chroma_w;
90     sub_dy[1] = sub_dy[2] = 1 << desc->log2_chroma_h;
91
92     numcomps = desc->nb_components;
93
94     switch (avctx->pix_fmt) {
95     case AV_PIX_FMT_GRAY8:
96     case AV_PIX_FMT_GRAY8A:
97     case AV_PIX_FMT_GRAY16:
98         color_space = CLRSPC_GRAY;
99         break;
100     case AV_PIX_FMT_RGB24:
101     case AV_PIX_FMT_RGBA:
102     case AV_PIX_FMT_RGB48:
103     case AV_PIX_FMT_RGBA64:
104     case AV_PIX_FMT_GBR24P:
105     case AV_PIX_FMT_GBRP9:
106     case AV_PIX_FMT_GBRP10:
107     case AV_PIX_FMT_GBRP12:
108     case AV_PIX_FMT_GBRP14:
109     case AV_PIX_FMT_GBRP16:
110     case AV_PIX_FMT_XYZ12:
111         color_space = CLRSPC_SRGB;
112         break;
113     case AV_PIX_FMT_YUV410P:
114     case AV_PIX_FMT_YUV411P:
115     case AV_PIX_FMT_YUV420P:
116     case AV_PIX_FMT_YUV422P:
117     case AV_PIX_FMT_YUV440P:
118     case AV_PIX_FMT_YUV444P:
119     case AV_PIX_FMT_YUVA420P:
120     case AV_PIX_FMT_YUVA422P:
121     case AV_PIX_FMT_YUVA444P:
122     case AV_PIX_FMT_YUV420P9:
123     case AV_PIX_FMT_YUV422P9:
124     case AV_PIX_FMT_YUV444P9:
125     case AV_PIX_FMT_YUVA420P9:
126     case AV_PIX_FMT_YUVA422P9:
127     case AV_PIX_FMT_YUVA444P9:
128     case AV_PIX_FMT_YUV420P10:
129     case AV_PIX_FMT_YUV422P10:
130     case AV_PIX_FMT_YUV444P10:
131     case AV_PIX_FMT_YUVA420P10:
132     case AV_PIX_FMT_YUVA422P10:
133     case AV_PIX_FMT_YUVA444P10:
134     case AV_PIX_FMT_YUV420P12:
135     case AV_PIX_FMT_YUV422P12:
136     case AV_PIX_FMT_YUV444P12:
137     case AV_PIX_FMT_YUV420P14:
138     case AV_PIX_FMT_YUV422P14:
139     case AV_PIX_FMT_YUV444P14:
140     case AV_PIX_FMT_YUV420P16:
141     case AV_PIX_FMT_YUV422P16:
142     case AV_PIX_FMT_YUV444P16:
143     case AV_PIX_FMT_YUVA420P16:
144     case AV_PIX_FMT_YUVA422P16:
145     case AV_PIX_FMT_YUVA444P16:
146         color_space = CLRSPC_SYCC;
147         break;
148     default:
149         av_log(avctx, AV_LOG_ERROR,
150                "The requested pixel format '%s' is not supported\n",
151                av_get_pix_fmt_name(avctx->pix_fmt));
152         return NULL;
153     }
154
155     for (i = 0; i < numcomps; i++) {
156         cmptparm[i].prec = desc->comp[i].depth_minus1 + 1;
157         cmptparm[i].bpp  = desc->comp[i].depth_minus1 + 1;
158         cmptparm[i].sgnd = 0;
159         cmptparm[i].dx = sub_dx[i];
160         cmptparm[i].dy = sub_dy[i];
161         cmptparm[i].w = avctx->width / sub_dx[i];
162         cmptparm[i].h = avctx->height / sub_dy[i];
163     }
164
165     img = opj_image_create(numcomps, cmptparm, color_space);
166
167     // x0, y0 is the top left corner of the image
168     // x1, y1 is the width, height of the reference grid
169     img->x0 = 0;
170     img->y0 = 0;
171     img->x1 = (avctx->width  - 1) * parameters->subsampling_dx + 1;
172     img->y1 = (avctx->height - 1) * parameters->subsampling_dy + 1;
173
174     return img;
175 }
176
177 static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx)
178 {
179     LibOpenJPEGContext *ctx = avctx->priv_data;
180     int err = AVERROR(ENOMEM);
181
182     opj_set_default_encoder_parameters(&ctx->enc_params);
183
184     ctx->enc_params.cp_rsiz = ctx->profile;
185     ctx->enc_params.mode = !!avctx->global_quality;
186     ctx->enc_params.cp_cinema = ctx->cinema_mode;
187     ctx->enc_params.prog_order = ctx->prog_order;
188     ctx->enc_params.numresolution = ctx->numresolution;
189     ctx->enc_params.cp_disto_alloc = ctx->disto_alloc;
190     ctx->enc_params.cp_fixed_alloc = ctx->fixed_alloc;
191     ctx->enc_params.cp_fixed_quality = ctx->fixed_quality;
192     ctx->enc_params.tcp_numlayers = ctx->numlayers;
193     ctx->enc_params.tcp_rates[0] = FFMAX(avctx->compression_level, 0) * 2;
194
195     if (ctx->cinema_mode > 0) {
196         ctx->enc_params.irreversible = 1;
197         ctx->enc_params.tcp_mct = 1;
198         ctx->enc_params.tile_size_on = 0;
199         /* no subsampling */
200         ctx->enc_params.cp_tdx=1;
201         ctx->enc_params.cp_tdy=1;
202         ctx->enc_params.subsampling_dx = 1;
203         ctx->enc_params.subsampling_dy = 1;
204         /* Tile and Image shall be at (0,0) */
205         ctx->enc_params.cp_tx0 = 0;
206         ctx->enc_params.cp_ty0 = 0;
207         ctx->enc_params.image_offset_x0 = 0;
208         ctx->enc_params.image_offset_y0 = 0;
209         /* Codeblock size= 32*32 */
210         ctx->enc_params.cblockw_init = 32;
211         ctx->enc_params.cblockh_init = 32;
212         ctx->enc_params.csty |= 0x01;
213         /* No ROI */
214         ctx->enc_params.roi_compno = -1;
215
216         if (ctx->enc_params.prog_order != CPRL) {
217             av_log(avctx, AV_LOG_ERROR, "prog_order forced to CPRL\n");
218             ctx->enc_params.prog_order = CPRL;
219         }
220         ctx->enc_params.tp_flag = 'C';
221         ctx->enc_params.tp_on = 1;
222     }
223
224     ctx->compress = opj_create_compress(ctx->format);
225     if (!ctx->compress) {
226         av_log(avctx, AV_LOG_ERROR, "Error creating the compressor\n");
227         return AVERROR(ENOMEM);
228     }
229
230     ctx->image = mj2_create_image(avctx, &ctx->enc_params);
231     if (!ctx->image) {
232         av_log(avctx, AV_LOG_ERROR, "Error creating the mj2 image\n");
233         err = AVERROR(EINVAL);
234         goto fail;
235     }
236     opj_setup_encoder(ctx->compress, &ctx->enc_params, ctx->image);
237
238     ctx->stream = opj_cio_open((opj_common_ptr)ctx->compress, NULL, 0);
239     if (!ctx->stream) {
240         av_log(avctx, AV_LOG_ERROR, "Error creating the cio stream\n");
241         err = AVERROR(ENOMEM);
242         goto fail;
243     }
244
245     avctx->coded_frame = avcodec_alloc_frame();
246     if (!avctx->coded_frame) {
247         av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
248         goto fail;
249     }
250
251     memset(&ctx->event_mgr, 0, sizeof(opj_event_mgr_t));
252     ctx->event_mgr.info_handler    = info_callback;
253     ctx->event_mgr.error_handler = error_callback;
254     ctx->event_mgr.warning_handler = warning_callback;
255     opj_set_event_mgr((opj_common_ptr)ctx->compress, &ctx->event_mgr, avctx);
256
257     return 0;
258
259 fail:
260     opj_cio_close(ctx->stream);
261     ctx->stream = NULL;
262     opj_destroy_compress(ctx->compress);
263     ctx->compress = NULL;
264     opj_image_destroy(ctx->image);
265     ctx->image = NULL;
266     av_freep(&avctx->coded_frame);
267     return err;
268 }
269
270 static int libopenjpeg_copy_packed8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
271 {
272     int compno;
273     int x;
274     int y;
275     int image_index;
276     int frame_index;
277     const int numcomps = image->numcomps;
278
279     for (compno = 0; compno < numcomps; ++compno) {
280         if (image->comps[compno].w > frame->linesize[0] / numcomps) {
281             av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
282             return 0;
283         }
284     }
285
286     for (compno = 0; compno < numcomps; ++compno) {
287         for (y = 0; y < avctx->height; ++y) {
288             image_index = y * avctx->width;
289             frame_index = y * frame->linesize[0] + compno;
290             for (x = 0; x < avctx->width; ++x) {
291                 image->comps[compno].data[image_index++] = frame->data[0][frame_index];
292                 frame_index += numcomps;
293             }
294         }
295     }
296
297     return 1;
298 }
299
300 // for XYZ 12 bit
301 static int libopenjpeg_copy_packed12(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
302 {
303     int compno;
304     int x;
305     int y;
306     int image_index;
307     int frame_index;
308     const int numcomps = image->numcomps;
309     uint16_t *frame_ptr = (uint16_t*)frame->data[0];
310
311     for (compno = 0; compno < numcomps; ++compno) {
312         if (image->comps[compno].w > frame->linesize[0] / numcomps) {
313             av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
314             return 0;
315         }
316     }
317
318     for (compno = 0; compno < numcomps; ++compno) {
319         for (y = 0; y < avctx->height; ++y) {
320             image_index = y * avctx->width;
321             frame_index = y * (frame->linesize[0] / 2) + compno;
322             for (x = 0; x < avctx->width; ++x) {
323                 image->comps[compno].data[image_index++] = frame_ptr[frame_index] >> 4;
324                 frame_index += numcomps;
325             }
326         }
327     }
328
329     return 1;
330 }
331
332 static int libopenjpeg_copy_packed16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
333 {
334     int compno;
335     int x;
336     int y;
337     int image_index;
338     int frame_index;
339     const int numcomps = image->numcomps;
340     uint16_t *frame_ptr = (uint16_t*)frame->data[0];
341
342     for (compno = 0; compno < numcomps; ++compno) {
343         if (image->comps[compno].w > frame->linesize[0] / numcomps) {
344             av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
345             return 0;
346         }
347     }
348
349     for (compno = 0; compno < numcomps; ++compno) {
350         for (y = 0; y < avctx->height; ++y) {
351             image_index = y * avctx->width;
352             frame_index = y * (frame->linesize[0] / 2) + compno;
353             for (x = 0; x < avctx->width; ++x) {
354                 image->comps[compno].data[image_index++] = frame_ptr[frame_index];
355                 frame_index += numcomps;
356             }
357         }
358     }
359
360     return 1;
361 }
362
363 static int libopenjpeg_copy_unpacked8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
364 {
365     int compno;
366     int x;
367     int y;
368     int width;
369     int height;
370     int image_index;
371     int frame_index;
372     const int numcomps = image->numcomps;
373
374     for (compno = 0; compno < numcomps; ++compno) {
375         if (image->comps[compno].w > frame->linesize[compno]) {
376             av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
377             return 0;
378         }
379     }
380
381     for (compno = 0; compno < numcomps; ++compno) {
382         width = avctx->width / image->comps[compno].dx;
383         height = avctx->height / image->comps[compno].dy;
384         for (y = 0; y < height; ++y) {
385             image_index = y * width;
386             frame_index = y * frame->linesize[compno];
387             for (x = 0; x < width; ++x)
388                 image->comps[compno].data[image_index++] = frame->data[compno][frame_index++];
389         }
390     }
391
392     return 1;
393 }
394
395 static int libopenjpeg_copy_unpacked16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
396 {
397     int compno;
398     int x;
399     int y;
400     int width;
401     int height;
402     int image_index;
403     int frame_index;
404     const int numcomps = image->numcomps;
405     uint16_t *frame_ptr;
406
407     for (compno = 0; compno < numcomps; ++compno) {
408         if (image->comps[compno].w > frame->linesize[compno]) {
409             av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
410             return 0;
411         }
412     }
413
414     for (compno = 0; compno < numcomps; ++compno) {
415         width = avctx->width / image->comps[compno].dx;
416         height = avctx->height / image->comps[compno].dy;
417         frame_ptr = (uint16_t*)frame->data[compno];
418         for (y = 0; y < height; ++y) {
419             image_index = y * width;
420             frame_index = y * (frame->linesize[compno] / 2);
421             for (x = 0; x < width; ++x)
422                 image->comps[compno].data[image_index++] = frame_ptr[frame_index++];
423         }
424     }
425
426     return 1;
427 }
428
429 static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
430                                     const AVFrame *frame, int *got_packet)
431 {
432     LibOpenJPEGContext *ctx = avctx->priv_data;
433     opj_cinfo_t *compress = ctx->compress;
434     opj_image_t *image    = ctx->image;
435     opj_cio_t *stream     = ctx->stream;
436     int cpyresult = 0;
437     int ret, len;
438     AVFrame gbrframe;
439
440     switch (avctx->pix_fmt) {
441     case AV_PIX_FMT_RGB24:
442     case AV_PIX_FMT_RGBA:
443     case AV_PIX_FMT_GRAY8A:
444         cpyresult = libopenjpeg_copy_packed8(avctx, frame, image);
445         break;
446     case AV_PIX_FMT_XYZ12:
447         cpyresult = libopenjpeg_copy_packed12(avctx, frame, image);
448         break;
449     case AV_PIX_FMT_RGB48:
450     case AV_PIX_FMT_RGBA64:
451         cpyresult = libopenjpeg_copy_packed16(avctx, frame, image);
452         break;
453     case AV_PIX_FMT_GBR24P:
454     case AV_PIX_FMT_GBRP9:
455     case AV_PIX_FMT_GBRP10:
456     case AV_PIX_FMT_GBRP12:
457     case AV_PIX_FMT_GBRP14:
458     case AV_PIX_FMT_GBRP16:
459         gbrframe = *frame;
460         gbrframe.data[0] = frame->data[2]; // swap to be rgb
461         gbrframe.data[1] = frame->data[0];
462         gbrframe.data[2] = frame->data[1];
463         gbrframe.linesize[0] = frame->linesize[2];
464         gbrframe.linesize[1] = frame->linesize[0];
465         gbrframe.linesize[2] = frame->linesize[1];
466         if (avctx->pix_fmt == AV_PIX_FMT_GBR24P) {
467             cpyresult = libopenjpeg_copy_unpacked8(avctx, &gbrframe, image);
468         } else {
469             cpyresult = libopenjpeg_copy_unpacked16(avctx, &gbrframe, image);
470         }
471         break;
472     case AV_PIX_FMT_GRAY8:
473     case AV_PIX_FMT_YUV410P:
474     case AV_PIX_FMT_YUV411P:
475     case AV_PIX_FMT_YUV420P:
476     case AV_PIX_FMT_YUV422P:
477     case AV_PIX_FMT_YUV440P:
478     case AV_PIX_FMT_YUV444P:
479     case AV_PIX_FMT_YUVA420P:
480     case AV_PIX_FMT_YUVA422P:
481     case AV_PIX_FMT_YUVA444P:
482         cpyresult = libopenjpeg_copy_unpacked8(avctx, frame, image);
483         break;
484     case AV_PIX_FMT_GRAY16:
485     case AV_PIX_FMT_YUV420P9:
486     case AV_PIX_FMT_YUV422P9:
487     case AV_PIX_FMT_YUV444P9:
488     case AV_PIX_FMT_YUVA420P9:
489     case AV_PIX_FMT_YUVA422P9:
490     case AV_PIX_FMT_YUVA444P9:
491     case AV_PIX_FMT_YUV444P10:
492     case AV_PIX_FMT_YUV422P10:
493     case AV_PIX_FMT_YUV420P10:
494     case AV_PIX_FMT_YUVA444P10:
495     case AV_PIX_FMT_YUVA422P10:
496     case AV_PIX_FMT_YUVA420P10:
497     case AV_PIX_FMT_YUV420P12:
498     case AV_PIX_FMT_YUV422P12:
499     case AV_PIX_FMT_YUV444P12:
500     case AV_PIX_FMT_YUV420P14:
501     case AV_PIX_FMT_YUV422P14:
502     case AV_PIX_FMT_YUV444P14:
503     case AV_PIX_FMT_YUV444P16:
504     case AV_PIX_FMT_YUV422P16:
505     case AV_PIX_FMT_YUV420P16:
506     case AV_PIX_FMT_YUVA444P16:
507     case AV_PIX_FMT_YUVA422P16:
508     case AV_PIX_FMT_YUVA420P16:
509         cpyresult = libopenjpeg_copy_unpacked16(avctx, frame, image);
510         break;
511     default:
512         av_log(avctx, AV_LOG_ERROR,
513                "The frame's pixel format '%s' is not supported\n",
514                av_get_pix_fmt_name(avctx->pix_fmt));
515         return AVERROR(EINVAL);
516         break;
517     }
518
519     if (!cpyresult) {
520         av_log(avctx, AV_LOG_ERROR,
521                "Could not copy the frame data to the internal image buffer\n");
522         return -1;
523     }
524
525     cio_seek(stream, 0);
526     if (!opj_encode(compress, stream, image, NULL)) {
527         av_log(avctx, AV_LOG_ERROR, "Error during the opj encode\n");
528         return -1;
529     }
530
531     len = cio_tell(stream);
532     if ((ret = ff_alloc_packet2(avctx, pkt, len)) < 0) {
533         return ret;
534     }
535
536     memcpy(pkt->data, stream->buffer, len);
537     pkt->flags |= AV_PKT_FLAG_KEY;
538     *got_packet = 1;
539     return 0;
540 }
541
542 static av_cold int libopenjpeg_encode_close(AVCodecContext *avctx)
543 {
544     LibOpenJPEGContext *ctx = avctx->priv_data;
545
546     opj_cio_close(ctx->stream);
547     ctx->stream = NULL;
548     opj_destroy_compress(ctx->compress);
549     ctx->compress = NULL;
550     opj_image_destroy(ctx->image);
551     ctx->image = NULL;
552     av_freep(&avctx->coded_frame);
553     return 0;
554 }
555
556 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
557 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
558 static const AVOption options[] = {
559     { "format",        "Codec Format",      OFFSET(format),        AV_OPT_TYPE_INT,   { .i64 = CODEC_JP2   }, CODEC_J2K, CODEC_JP2,   VE, "format"      },
560     { "j2k",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K   }, 0,         0,           VE, "format"      },
561     { "jp2",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2   }, 0,         0,           VE, "format"      },
562     { "profile",       NULL,                OFFSET(profile),       AV_OPT_TYPE_INT,   { .i64 = STD_RSIZ    }, STD_RSIZ,  CINEMA4K,    VE, "profile"     },
563     { "jpeg2000",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = STD_RSIZ    }, 0,         0,           VE, "profile"     },
564     { "cinema2k",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA2K    }, 0,         0,           VE, "profile"     },
565     { "cinema4k",      NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA4K    }, 0,         0,           VE, "profile"     },
566     { "cinema_mode",   "Digital Cinema",    OFFSET(cinema_mode),   AV_OPT_TYPE_INT,   { .i64 = OFF         }, OFF,       CINEMA4K_24, VE, "cinema_mode" },
567     { "off",           NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = OFF         }, 0,         0,           VE, "cinema_mode" },
568     { "2k_24",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_24 }, 0,         0,           VE, "cinema_mode" },
569     { "2k_48",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_48 }, 0,         0,           VE, "cinema_mode" },
570     { "4k_24",         NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CINEMA4K_24 }, 0,         0,           VE, "cinema_mode" },
571     { "prog_order",    "Progression Order", OFFSET(prog_order),    AV_OPT_TYPE_INT,   { .i64 = LRCP        }, LRCP,      CPRL,        VE, "prog_order"  },
572     { "lrcp",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = LRCP        }, 0,         0,           VE, "prog_order"  },
573     { "rlcp",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = RLCP        }, 0,         0,           VE, "prog_order"  },
574     { "rpcl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = RPCL        }, 0,         0,           VE, "prog_order"  },
575     { "pcrl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = PCRL        }, 0,         0,           VE, "prog_order"  },
576     { "cprl",          NULL,                0,                     AV_OPT_TYPE_CONST, { .i64 = CPRL        }, 0,         0,           VE, "prog_order"  },
577     { "numresolution", NULL,                OFFSET(numresolution), AV_OPT_TYPE_INT,   { .i64 = 6           }, 1,         INT_MAX,     VE                },
578     { "numlayers",     NULL,                OFFSET(numlayers),     AV_OPT_TYPE_INT,   { .i64 = 1           }, 1,         10,          VE                },
579     { "disto_alloc",   NULL,                OFFSET(disto_alloc),   AV_OPT_TYPE_INT,   { .i64 = 1           }, 0,         1,           VE                },
580     { "fixed_alloc",   NULL,                OFFSET(fixed_alloc),   AV_OPT_TYPE_INT,   { .i64 = 0           }, 0,         1,           VE                },
581     { "fixed_quality", NULL,                OFFSET(fixed_quality), AV_OPT_TYPE_INT,   { .i64 = 0           }, 0,         1,           VE                },
582     { NULL },
583 };
584
585 static const AVClass openjpeg_class = {
586     .class_name = "libopenjpeg",
587     .item_name  = av_default_item_name,
588     .option     = options,
589     .version    = LIBAVUTIL_VERSION_INT,
590 };
591
592 AVCodec ff_libopenjpeg_encoder = {
593     .name           = "libopenjpeg",
594     .type           = AVMEDIA_TYPE_VIDEO,
595     .id             = AV_CODEC_ID_JPEG2000,
596     .priv_data_size = sizeof(LibOpenJPEGContext),
597     .init           = libopenjpeg_encode_init,
598     .encode2        = libopenjpeg_encode_frame,
599     .close          = libopenjpeg_encode_close,
600     .capabilities   = 0,
601     .pix_fmts       = (const enum AVPixelFormat[]) {
602         AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64,
603         AV_PIX_FMT_GBR24P,
604         AV_PIX_FMT_GBRP9, AV_PIX_FMT_GBRP10, AV_PIX_FMT_GBRP12, AV_PIX_FMT_GBRP14, AV_PIX_FMT_GBRP16,
605         AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY8A, AV_PIX_FMT_GRAY16,
606         AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA420P,
607         AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA422P,
608         AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUVA444P,
609         AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
610         AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9,
611         AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
612         AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10,
613         AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12,
614         AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14,
615         AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
616         AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16,
617         AV_PIX_FMT_XYZ12,
618         AV_PIX_FMT_NONE
619     },
620     .long_name      = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
621     .priv_class     = &openjpeg_class,
622 };