2 * JPEG 2000 encoding support via OpenJPEG
3 * Copyright (c) 2011 Michael Bradshaw <mbradshaw@sorensonmedia.com>
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * JPEG 2000 encoder using libopenjpeg
30 #include "libavutil/common.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/opt.h"
37 typedef struct LibOpenJPEGContext {
40 opj_cparameters_t enc_params;
41 opj_cinfo_t *compress;
42 opj_event_mgr_t event_mgr;
54 static void error_callback(const char *msg, void *data)
56 av_log(data, AV_LOG_ERROR, "%s\n", msg);
59 static void warning_callback(const char *msg, void *data)
61 av_log(data, AV_LOG_WARNING, "%s\n", msg);
64 static void info_callback(const char *msg, void *data)
66 av_log(data, AV_LOG_DEBUG, "%s\n", msg);
69 static opj_image_t *libopenjpeg_create_image(AVCodecContext *avctx,
70 opj_cparameters_t *parameters)
72 const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
73 opj_image_cmptparm_t *cmptparm;
74 OPJ_COLOR_SPACE color_space;
79 int numcomps = desc->nb_components;
86 sub_dx[2] = 1 << desc->log2_chroma_w;
88 sub_dy[2] = 1 << desc->log2_chroma_h;
90 switch (avctx->pix_fmt) {
91 case AV_PIX_FMT_GRAY8:
92 case AV_PIX_FMT_GRAY16:
94 color_space = CLRSPC_GRAY;
96 case AV_PIX_FMT_RGB24:
98 case AV_PIX_FMT_RGB48:
99 case AV_PIX_FMT_RGBA64:
100 color_space = CLRSPC_SRGB;
102 case AV_PIX_FMT_YUV410P:
103 case AV_PIX_FMT_YUV411P:
104 case AV_PIX_FMT_YUV420P:
105 case AV_PIX_FMT_YUV422P:
106 case AV_PIX_FMT_YUV440P:
107 case AV_PIX_FMT_YUV444P:
108 case AV_PIX_FMT_YUVA420P:
109 case AV_PIX_FMT_YUV420P9:
110 case AV_PIX_FMT_YUV422P9:
111 case AV_PIX_FMT_YUV444P9:
112 case AV_PIX_FMT_YUV420P10:
113 case AV_PIX_FMT_YUV422P10:
114 case AV_PIX_FMT_YUV444P10:
115 case AV_PIX_FMT_YUV420P16:
116 case AV_PIX_FMT_YUV422P16:
117 case AV_PIX_FMT_YUV444P16:
118 color_space = CLRSPC_SYCC;
121 av_log(avctx, AV_LOG_ERROR,
122 "The requested pixel format '%s' is not supported\n",
123 av_get_pix_fmt_name(avctx->pix_fmt));
127 cmptparm = av_mallocz(numcomps * sizeof(*cmptparm));
129 av_log(avctx, AV_LOG_ERROR, "Not enough memory");
133 for (i = 0; i < numcomps; i++) {
134 cmptparm[i].prec = desc->comp[i].depth_minus1 + 1;
135 cmptparm[i].bpp = desc->comp[i].depth_minus1 + 1;
136 cmptparm[i].sgnd = 0;
137 cmptparm[i].dx = sub_dx[i];
138 cmptparm[i].dy = sub_dy[i];
139 cmptparm[i].w = avctx->width / sub_dx[i];
140 cmptparm[i].h = avctx->height / sub_dy[i];
143 img = opj_image_create(numcomps, cmptparm, color_space);
148 static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx)
150 LibOpenJPEGContext *ctx = avctx->priv_data;
151 int err = AVERROR(ENOMEM);
153 opj_set_default_encoder_parameters(&ctx->enc_params);
155 ctx->enc_params.cp_rsiz = ctx->profile;
156 ctx->enc_params.mode = !!avctx->global_quality;
157 ctx->enc_params.cp_cinema = ctx->cinema_mode;
158 ctx->enc_params.prog_order = ctx->prog_order;
159 ctx->enc_params.numresolution = ctx->numresolution;
160 ctx->enc_params.cp_disto_alloc = ctx->disto_alloc;
161 ctx->enc_params.cp_fixed_alloc = ctx->fixed_alloc;
162 ctx->enc_params.cp_fixed_quality = ctx->fixed_quality;
163 ctx->enc_params.tcp_numlayers = ctx->numlayers;
164 ctx->enc_params.tcp_rates[0] = FFMAX(avctx->compression_level, 0) * 2;
166 ctx->compress = opj_create_compress(ctx->format);
167 if (!ctx->compress) {
168 av_log(avctx, AV_LOG_ERROR, "Error creating the compressor\n");
169 return AVERROR(ENOMEM);
172 avctx->coded_frame = av_frame_alloc();
173 if (!avctx->coded_frame) {
174 av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
178 ctx->image = libopenjpeg_create_image(avctx, &ctx->enc_params);
180 av_log(avctx, AV_LOG_ERROR, "Error creating the mj2 image\n");
181 err = AVERROR(EINVAL);
185 ctx->event_mgr.info_handler = info_callback;
186 ctx->event_mgr.error_handler = error_callback;
187 ctx->event_mgr.warning_handler = warning_callback;
188 opj_set_event_mgr((opj_common_ptr) ctx->compress, &ctx->event_mgr, avctx);
193 av_freep(&ctx->compress);
194 av_freep(&avctx->coded_frame);
198 static void libopenjpeg_copy_packed8(AVCodecContext *avctx,
199 const AVFrame *frame, opj_image_t *image)
203 int image_index, frame_index;
204 const int numcomps = image->numcomps;
206 for (compno = 0; compno < numcomps; ++compno)
207 for (y = 0; y < avctx->height; ++y) {
208 image_index = y * avctx->width;
209 frame_index = y * frame->linesize[0] + compno;
210 for (x = 0; x < avctx->width; ++x) {
211 image->comps[compno].data[image_index++] =
212 frame->data[0][frame_index];
213 frame_index += numcomps;
218 static void libopenjpeg_copy_packed16(AVCodecContext *avctx,
219 const AVFrame *frame, opj_image_t *image)
223 int image_index, frame_index;
224 const int numcomps = image->numcomps;
225 uint16_t *frame_ptr = (uint16_t *)frame->data[0];
227 for (compno = 0; compno < numcomps; ++compno)
228 for (y = 0; y < avctx->height; ++y) {
229 image_index = y * avctx->width;
230 frame_index = y * (frame->linesize[0] / 2) + compno;
231 for (x = 0; x < avctx->width; ++x) {
232 image->comps[compno].data[image_index++] =
233 frame_ptr[frame_index];
234 frame_index += numcomps;
239 static void libopenjpeg_copy_unpacked8(AVCodecContext *avctx,
240 const AVFrame *frame, opj_image_t *image)
245 int image_index, frame_index;
246 const int numcomps = image->numcomps;
248 for (compno = 0; compno < numcomps; ++compno) {
249 width = avctx->width / image->comps[compno].dx;
250 height = avctx->height / image->comps[compno].dy;
251 for (y = 0; y < height; ++y) {
252 image_index = y * width;
253 frame_index = y * frame->linesize[compno];
254 for (x = 0; x < width; ++x)
255 image->comps[compno].data[image_index++] =
256 frame->data[compno][frame_index++];
261 static void libopenjpeg_copy_unpacked16(AVCodecContext *avctx,
262 const AVFrame *frame,
268 int image_index, frame_index;
269 const int numcomps = image->numcomps;
272 for (compno = 0; compno < numcomps; ++compno) {
273 width = avctx->width / image->comps[compno].dx;
274 height = avctx->height / image->comps[compno].dy;
275 frame_ptr = (uint16_t *)frame->data[compno];
276 for (y = 0; y < height; ++y) {
277 image_index = y * width;
278 frame_index = y * (frame->linesize[compno] / 2);
279 for (x = 0; x < width; ++x)
280 image->comps[compno].data[image_index++] =
281 frame_ptr[frame_index++];
286 static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
287 const AVFrame *frame, int *got_packet)
289 LibOpenJPEGContext *ctx = avctx->priv_data;
290 opj_cinfo_t *compress = ctx->compress;
291 opj_image_t *image = ctx->image;
295 // x0, y0 is the top left corner of the image
296 // x1, y1 is the width, height of the reference grid
299 image->x1 = (avctx->width - 1) * ctx->enc_params.subsampling_dx + 1;
300 image->y1 = (avctx->height - 1) * ctx->enc_params.subsampling_dy + 1;
302 switch (avctx->pix_fmt) {
303 case AV_PIX_FMT_RGB24:
304 case AV_PIX_FMT_RGBA:
306 libopenjpeg_copy_packed8(avctx, frame, image);
308 case AV_PIX_FMT_RGB48:
309 case AV_PIX_FMT_RGBA64:
310 libopenjpeg_copy_packed16(avctx, frame, image);
312 case AV_PIX_FMT_GRAY8:
313 case AV_PIX_FMT_YUV410P:
314 case AV_PIX_FMT_YUV411P:
315 case AV_PIX_FMT_YUV420P:
316 case AV_PIX_FMT_YUV422P:
317 case AV_PIX_FMT_YUV440P:
318 case AV_PIX_FMT_YUV444P:
319 case AV_PIX_FMT_YUVA420P:
320 libopenjpeg_copy_unpacked8(avctx, frame, image);
322 case AV_PIX_FMT_GRAY16:
323 case AV_PIX_FMT_YUV420P9:
324 case AV_PIX_FMT_YUV422P9:
325 case AV_PIX_FMT_YUV444P9:
326 case AV_PIX_FMT_YUV444P10:
327 case AV_PIX_FMT_YUV422P10:
328 case AV_PIX_FMT_YUV420P10:
329 case AV_PIX_FMT_YUV444P16:
330 case AV_PIX_FMT_YUV422P16:
331 case AV_PIX_FMT_YUV420P16:
332 libopenjpeg_copy_unpacked16(avctx, frame, image);
335 av_log(avctx, AV_LOG_ERROR,
336 "The frame's pixel format '%s' is not supported\n",
337 av_get_pix_fmt_name(avctx->pix_fmt));
338 return AVERROR(EINVAL);
342 opj_setup_encoder(compress, &ctx->enc_params, image);
343 stream = opj_cio_open((opj_common_ptr) compress, NULL, 0);
345 av_log(avctx, AV_LOG_ERROR, "Error creating the cio stream\n");
346 return AVERROR(ENOMEM);
349 if (!opj_encode(compress, stream, image, NULL)) {
350 opj_cio_close(stream);
351 av_log(avctx, AV_LOG_ERROR, "Error during the opj encode\n");
355 len = cio_tell(stream);
356 if ((ret = ff_alloc_packet(pkt, len)) < 0) {
357 opj_cio_close(stream);
361 memcpy(pkt->data, stream->buffer, len);
362 pkt->flags |= AV_PKT_FLAG_KEY;
364 opj_cio_close(stream);
368 static av_cold int libopenjpeg_encode_close(AVCodecContext *avctx)
370 LibOpenJPEGContext *ctx = avctx->priv_data;
372 opj_destroy_compress(ctx->compress);
373 opj_image_destroy(ctx->image);
374 av_freep(&avctx->coded_frame);
378 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
379 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
380 static const AVOption options[] = {
381 { "format", "Codec Format", OFFSET(format), AV_OPT_TYPE_INT, { .i64 = CODEC_JP2 }, CODEC_J2K, CODEC_JP2, VE, "format" },
382 { "j2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K }, 0, 0, VE, "format" },
383 { "jp2", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2 }, 0, 0, VE, "format" },
384 { "profile", NULL, OFFSET(profile), AV_OPT_TYPE_INT, { .i64 = STD_RSIZ }, STD_RSIZ, CINEMA4K, VE, "profile" },
385 { "jpeg2000", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = STD_RSIZ }, 0, 0, VE, "profile" },
386 { "cinema2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K }, 0, 0, VE, "profile" },
387 { "cinema4k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K }, 0, 0, VE, "profile" },
388 { "cinema_mode", "Digital Cinema", OFFSET(cinema_mode), AV_OPT_TYPE_INT, { .i64 = OFF }, OFF, CINEMA4K_24, VE, "cinema_mode" },
389 { "off", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = OFF }, 0, 0, VE, "cinema_mode" },
390 { "2k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_24 }, 0, 0, VE, "cinema_mode" },
391 { "2k_48", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_48 }, 0, 0, VE, "cinema_mode" },
392 { "4k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K_24 }, 0, 0, VE, "cinema_mode" },
393 { "prog_order", "Progression Order", OFFSET(prog_order), AV_OPT_TYPE_INT, { .i64 = LRCP }, LRCP, CPRL, VE, "prog_order" },
394 { "lrcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LRCP }, 0, 0, VE, "prog_order" },
395 { "rlcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RLCP }, 0, 0, VE, "prog_order" },
396 { "rpcl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RPCL }, 0, 0, VE, "prog_order" },
397 { "pcrl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PCRL }, 0, 0, VE, "prog_order" },
398 { "cprl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPRL }, 0, 0, VE, "prog_order" },
399 { "numresolution", NULL, OFFSET(numresolution), AV_OPT_TYPE_INT, { .i64 = 6 }, 1, 10, VE },
400 { "numlayers", NULL, OFFSET(numlayers), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, 10, VE },
401 { "disto_alloc", NULL, OFFSET(disto_alloc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
402 { "fixed_alloc", NULL, OFFSET(fixed_alloc), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
403 { "fixed_quality", NULL, OFFSET(fixed_quality), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
407 static const AVClass class = {
408 .class_name = "libopenjpeg",
409 .item_name = av_default_item_name,
411 .version = LIBAVUTIL_VERSION_INT,
414 AVCodec ff_libopenjpeg_encoder = {
415 .name = "libopenjpeg",
416 .long_name = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
417 .type = AVMEDIA_TYPE_VIDEO,
418 .id = AV_CODEC_ID_JPEG2000,
419 .priv_data_size = sizeof(LibOpenJPEGContext),
420 .init = libopenjpeg_encode_init,
421 .encode2 = libopenjpeg_encode_frame,
422 .close = libopenjpeg_encode_close,
424 .pix_fmts = (const enum AVPixelFormat[]) {
425 AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, AV_PIX_FMT_RGB48,
427 AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA8,
428 AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA420P,
429 AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P,
430 AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
431 AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9,
432 AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10,
433 AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
436 .priv_class = &class,