FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
libopenjpegenc.c
Go to the documentation of this file.
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 LibOpenJPEGContext {
45  opj_image_t *image;
46  opj_cparameters_t enc_params;
47  opj_event_mgr_t event_mgr;
48  int format;
49  int profile;
53  int numlayers;
58 
59 static void error_callback(const char *msg, void *data)
60 {
61  av_log(data, AV_LOG_ERROR, "%s\n", msg);
62 }
63 
64 static void warning_callback(const char *msg, void *data)
65 {
66  av_log(data, AV_LOG_WARNING, "%s\n", msg);
67 }
68 
69 static void info_callback(const char *msg, void *data)
70 {
71  av_log(data, AV_LOG_DEBUG, "%s\n", msg);
72 }
73 
74 static void cinema_parameters(opj_cparameters_t *p)
75 {
76  p->tile_size_on = 0;
77  p->cp_tdx = 1;
78  p->cp_tdy = 1;
79 
80  /* Tile part */
81  p->tp_flag = 'C';
82  p->tp_on = 1;
83 
84  /* Tile and Image shall be at (0, 0) */
85  p->cp_tx0 = 0;
86  p->cp_ty0 = 0;
87  p->image_offset_x0 = 0;
88  p->image_offset_y0 = 0;
89 
90  /* Codeblock size= 32 * 32 */
91  p->cblockw_init = 32;
92  p->cblockh_init = 32;
93  p->csty |= 0x01;
94 
95  /* The progression order shall be CPRL */
96  p->prog_order = CPRL;
97 
98  /* No ROI */
99  p->roi_compno = -1;
100 
101  /* No subsampling */
102  p->subsampling_dx = 1;
103  p->subsampling_dy = 1;
104 
105  /* 9-7 transform */
106  p->irreversible = 1;
107 
108  p->tcp_mct = 1;
109 }
110 
111 static opj_image_t *mj2_create_image(AVCodecContext *avctx, opj_cparameters_t *parameters)
112 {
113  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
114  opj_image_cmptparm_t cmptparm[4] = {{0}};
115  opj_image_t *img;
116  int i;
117  int sub_dx[4];
118  int sub_dy[4];
119  int numcomps;
120  OPJ_COLOR_SPACE color_space = CLRSPC_UNKNOWN;
121 
122  sub_dx[0] = sub_dx[3] = 1;
123  sub_dy[0] = sub_dy[3] = 1;
124  sub_dx[1] = sub_dx[2] = 1 << desc->log2_chroma_w;
125  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  color_space = CLRSPC_GRAY;
135  break;
136  case AV_PIX_FMT_RGB24:
137  case AV_PIX_FMT_RGBA:
138  case AV_PIX_FMT_RGB48:
139  case AV_PIX_FMT_RGBA64:
140  case AV_PIX_FMT_GBR24P:
141  case AV_PIX_FMT_GBRP9:
142  case AV_PIX_FMT_GBRP10:
143  case AV_PIX_FMT_GBRP12:
144  case AV_PIX_FMT_GBRP14:
145  case AV_PIX_FMT_GBRP16:
146  case AV_PIX_FMT_XYZ12:
147  color_space = CLRSPC_SRGB;
148  break;
149  case AV_PIX_FMT_YUV410P:
150  case AV_PIX_FMT_YUV411P:
151  case AV_PIX_FMT_YUV420P:
152  case AV_PIX_FMT_YUV422P:
153  case AV_PIX_FMT_YUV440P:
154  case AV_PIX_FMT_YUV444P:
155  case AV_PIX_FMT_YUVA420P:
156  case AV_PIX_FMT_YUVA422P:
157  case AV_PIX_FMT_YUVA444P:
158  case AV_PIX_FMT_YUV420P9:
159  case AV_PIX_FMT_YUV422P9:
160  case AV_PIX_FMT_YUV444P9:
182  color_space = CLRSPC_SYCC;
183  break;
184  default:
185  av_log(avctx, AV_LOG_ERROR,
186  "The requested pixel format '%s' is not supported\n",
187  av_get_pix_fmt_name(avctx->pix_fmt));
188  return NULL;
189  }
190 
191  for (i = 0; i < numcomps; i++) {
192  cmptparm[i].prec = desc->comp[i].depth_minus1 + 1;
193  cmptparm[i].bpp = desc->comp[i].depth_minus1 + 1;
194  cmptparm[i].sgnd = 0;
195  cmptparm[i].dx = sub_dx[i];
196  cmptparm[i].dy = sub_dy[i];
197  cmptparm[i].w = (avctx->width + sub_dx[i] - 1) / sub_dx[i];
198  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  if (!img)
204  return NULL;
205 
206  // x0, y0 is the top left corner of the image
207  // x1, y1 is the width, height of the reference grid
208  img->x0 = 0;
209  img->y0 = 0;
210  img->x1 = (avctx->width - 1) * parameters->subsampling_dx + 1;
211  img->y1 = (avctx->height - 1) * parameters->subsampling_dy + 1;
212 
213  return img;
214 }
215 
217 {
218  LibOpenJPEGContext *ctx = avctx->priv_data;
219  int err = AVERROR(ENOMEM);
220 
221  opj_set_default_encoder_parameters(&ctx->enc_params);
222 
223  ctx->enc_params.cp_rsiz = ctx->profile;
224  ctx->enc_params.mode = !!avctx->global_quality;
225  ctx->enc_params.cp_cinema = ctx->cinema_mode;
226  ctx->enc_params.prog_order = ctx->prog_order;
227  ctx->enc_params.numresolution = ctx->numresolution;
228  ctx->enc_params.cp_disto_alloc = ctx->disto_alloc;
229  ctx->enc_params.cp_fixed_alloc = ctx->fixed_alloc;
230  ctx->enc_params.cp_fixed_quality = ctx->fixed_quality;
231  ctx->enc_params.tcp_numlayers = ctx->numlayers;
232  ctx->enc_params.tcp_rates[0] = FFMAX(avctx->compression_level, 0) * 2;
233 
234  if (ctx->cinema_mode > 0) {
236  }
237 
238  ctx->image = mj2_create_image(avctx, &ctx->enc_params);
239  if (!ctx->image) {
240  av_log(avctx, AV_LOG_ERROR, "Error creating the mj2 image\n");
241  err = AVERROR(EINVAL);
242  goto fail;
243  }
244 
245  avctx->coded_frame = av_frame_alloc();
246  if (!avctx->coded_frame) {
247  av_log(avctx, AV_LOG_ERROR, "Error allocating coded frame\n");
248  goto fail;
249  }
250 
251  return 0;
252 
253 fail:
254  opj_image_destroy(ctx->image);
255  ctx->image = NULL;
256  av_frame_free(&avctx->coded_frame);
257  return err;
258 }
259 
260 static int libopenjpeg_copy_packed8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
261 {
262  int compno;
263  int x;
264  int y;
265  int *image_line;
266  int frame_index;
267  const int numcomps = image->numcomps;
268 
269  for (compno = 0; compno < numcomps; ++compno) {
270  if (image->comps[compno].w > frame->linesize[0] / numcomps) {
271  av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
272  return 0;
273  }
274  }
275 
276  for (compno = 0; compno < numcomps; ++compno) {
277  for (y = 0; y < avctx->height; ++y) {
278  image_line = image->comps[compno].data + y * image->comps[compno].w;
279  frame_index = y * frame->linesize[0] + compno;
280  for (x = 0; x < avctx->width; ++x) {
281  image_line[x] = frame->data[0][frame_index];
282  frame_index += numcomps;
283  }
284  for (; x < image->comps[compno].w; ++x) {
285  image_line[x] = image_line[x - 1];
286  }
287  }
288  for (; y < image->comps[compno].h; ++y) {
289  image_line = image->comps[compno].data + y * image->comps[compno].w;
290  for (x = 0; x < image->comps[compno].w; ++x) {
291  image_line[x] = image_line[x - image->comps[compno].w];
292  }
293  }
294  }
295 
296  return 1;
297 }
298 
299 // for XYZ 12 bit
300 static int libopenjpeg_copy_packed12(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
301 {
302  int compno;
303  int x, y;
304  int *image_line;
305  int frame_index;
306  const int numcomps = image->numcomps;
307  uint16_t *frame_ptr = (uint16_t *)frame->data[0];
308 
309  for (compno = 0; compno < numcomps; ++compno) {
310  if (image->comps[compno].w > frame->linesize[0] / numcomps) {
311  av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
312  return 0;
313  }
314  }
315 
316  for (compno = 0; compno < numcomps; ++compno) {
317  for (y = 0; y < avctx->height; ++y) {
318  image_line = image->comps[compno].data + y * image->comps[compno].w;
319  frame_index = y * (frame->linesize[0] / 2) + compno;
320  for (x = 0; x < avctx->width; ++x) {
321  image_line[x] = frame_ptr[frame_index] >> 4;
322  frame_index += numcomps;
323  }
324  for (; x < image->comps[compno].w; ++x) {
325  image_line[x] = image_line[x - 1];
326  }
327  }
328  for (; y < image->comps[compno].h; ++y) {
329  image_line = image->comps[compno].data + y * image->comps[compno].w;
330  for (x = 0; x < image->comps[compno].w; ++x) {
331  image_line[x] = image_line[x - image->comps[compno].w];
332  }
333  }
334  }
335 
336  return 1;
337 }
338 
339 static int libopenjpeg_copy_packed16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
340 {
341  int compno;
342  int x;
343  int y;
344  int *image_line;
345  int frame_index;
346  const int numcomps = image->numcomps;
347  uint16_t *frame_ptr = (uint16_t*)frame->data[0];
348 
349  for (compno = 0; compno < numcomps; ++compno) {
350  if (image->comps[compno].w > frame->linesize[0] / numcomps) {
351  av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
352  return 0;
353  }
354  }
355 
356  for (compno = 0; compno < numcomps; ++compno) {
357  for (y = 0; y < avctx->height; ++y) {
358  image_line = image->comps[compno].data + y * image->comps[compno].w;
359  frame_index = y * (frame->linesize[0] / 2) + compno;
360  for (x = 0; x < avctx->width; ++x) {
361  image_line[x] = frame_ptr[frame_index];
362  frame_index += numcomps;
363  }
364  for (; x < image->comps[compno].w; ++x) {
365  image_line[x] = image_line[x - 1];
366  }
367  }
368  for (; y < image->comps[compno].h; ++y) {
369  image_line = image->comps[compno].data + y * image->comps[compno].w;
370  for (x = 0; x < image->comps[compno].w; ++x) {
371  image_line[x] = image_line[x - image->comps[compno].w];
372  }
373  }
374  }
375 
376  return 1;
377 }
378 
379 static int libopenjpeg_copy_unpacked8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
380 {
381  int compno;
382  int x;
383  int y;
384  int width;
385  int height;
386  int *image_line;
387  int frame_index;
388  const int numcomps = image->numcomps;
389 
390  for (compno = 0; compno < numcomps; ++compno) {
391  if (image->comps[compno].w > frame->linesize[compno]) {
392  av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
393  return 0;
394  }
395  }
396 
397  for (compno = 0; compno < numcomps; ++compno) {
398  width = avctx->width / image->comps[compno].dx;
399  height = avctx->height / image->comps[compno].dy;
400  for (y = 0; y < height; ++y) {
401  image_line = image->comps[compno].data + y * image->comps[compno].w;
402  frame_index = y * frame->linesize[compno];
403  for (x = 0; x < width; ++x)
404  image_line[x] = frame->data[compno][frame_index++];
405  for (; x < image->comps[compno].w; ++x) {
406  image_line[x] = image_line[x - 1];
407  }
408  }
409  for (; y < image->comps[compno].h; ++y) {
410  image_line = image->comps[compno].data + y * image->comps[compno].w;
411  for (x = 0; x < image->comps[compno].w; ++x) {
412  image_line[x] = image_line[x - image->comps[compno].w];
413  }
414  }
415  }
416 
417  return 1;
418 }
419 
420 static int libopenjpeg_copy_unpacked16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
421 {
422  int compno;
423  int x;
424  int y;
425  int width;
426  int height;
427  int *image_line;
428  int frame_index;
429  const int numcomps = image->numcomps;
430  uint16_t *frame_ptr;
431 
432  for (compno = 0; compno < numcomps; ++compno) {
433  if (image->comps[compno].w > frame->linesize[compno]) {
434  av_log(avctx, AV_LOG_ERROR, "Error: frame's linesize is too small for the image\n");
435  return 0;
436  }
437  }
438 
439  for (compno = 0; compno < numcomps; ++compno) {
440  width = avctx->width / image->comps[compno].dx;
441  height = avctx->height / image->comps[compno].dy;
442  frame_ptr = (uint16_t *)frame->data[compno];
443  for (y = 0; y < height; ++y) {
444  image_line = image->comps[compno].data + y * image->comps[compno].w;
445  frame_index = y * (frame->linesize[compno] / 2);
446  for (x = 0; x < width; ++x)
447  image_line[x] = frame_ptr[frame_index++];
448  for (; x < image->comps[compno].w; ++x) {
449  image_line[x] = image_line[x - 1];
450  }
451  }
452  for (; y < image->comps[compno].h; ++y) {
453  image_line = image->comps[compno].data + y * image->comps[compno].w;
454  for (x = 0; x < image->comps[compno].w; ++x) {
455  image_line[x] = image_line[x - image->comps[compno].w];
456  }
457  }
458  }
459 
460  return 1;
461 }
462 
464  const AVFrame *frame, int *got_packet)
465 {
466  LibOpenJPEGContext *ctx = avctx->priv_data;
467  opj_image_t *image = ctx->image;
468  opj_cinfo_t *compress = NULL;
469  opj_cio_t *stream = NULL;
470  int cpyresult = 0;
471  int ret, len;
472  AVFrame *gbrframe;
473 
474  switch (avctx->pix_fmt) {
475  case AV_PIX_FMT_RGB24:
476  case AV_PIX_FMT_RGBA:
477  case AV_PIX_FMT_YA8:
478  cpyresult = libopenjpeg_copy_packed8(avctx, frame, image);
479  break;
480  case AV_PIX_FMT_XYZ12:
481  cpyresult = libopenjpeg_copy_packed12(avctx, frame, image);
482  break;
483  case AV_PIX_FMT_RGB48:
484  case AV_PIX_FMT_RGBA64:
485  case AV_PIX_FMT_YA16:
486  cpyresult = libopenjpeg_copy_packed16(avctx, frame, image);
487  break;
488  case AV_PIX_FMT_GBR24P:
489  case AV_PIX_FMT_GBRP9:
490  case AV_PIX_FMT_GBRP10:
491  case AV_PIX_FMT_GBRP12:
492  case AV_PIX_FMT_GBRP14:
493  case AV_PIX_FMT_GBRP16:
494  gbrframe = av_frame_clone(frame);
495  if (!gbrframe)
496  return AVERROR(ENOMEM);
497  gbrframe->data[0] = frame->data[2]; // swap to be rgb
498  gbrframe->data[1] = frame->data[0];
499  gbrframe->data[2] = frame->data[1];
500  gbrframe->linesize[0] = frame->linesize[2];
501  gbrframe->linesize[1] = frame->linesize[0];
502  gbrframe->linesize[2] = frame->linesize[1];
503  if (avctx->pix_fmt == AV_PIX_FMT_GBR24P) {
504  cpyresult = libopenjpeg_copy_unpacked8(avctx, gbrframe, image);
505  } else {
506  cpyresult = libopenjpeg_copy_unpacked16(avctx, gbrframe, image);
507  }
508  av_frame_free(&gbrframe);
509  break;
510  case AV_PIX_FMT_GRAY8:
511  case AV_PIX_FMT_YUV410P:
512  case AV_PIX_FMT_YUV411P:
513  case AV_PIX_FMT_YUV420P:
514  case AV_PIX_FMT_YUV422P:
515  case AV_PIX_FMT_YUV440P:
516  case AV_PIX_FMT_YUV444P:
517  case AV_PIX_FMT_YUVA420P:
518  case AV_PIX_FMT_YUVA422P:
519  case AV_PIX_FMT_YUVA444P:
520  cpyresult = libopenjpeg_copy_unpacked8(avctx, frame, image);
521  break;
522  case AV_PIX_FMT_GRAY16:
523  case AV_PIX_FMT_YUV420P9:
524  case AV_PIX_FMT_YUV422P9:
525  case AV_PIX_FMT_YUV444P9:
547  cpyresult = libopenjpeg_copy_unpacked16(avctx, frame, image);
548  break;
549  default:
550  av_log(avctx, AV_LOG_ERROR,
551  "The frame's pixel format '%s' is not supported\n",
552  av_get_pix_fmt_name(avctx->pix_fmt));
553  return AVERROR(EINVAL);
554  break;
555  }
556 
557  if (!cpyresult) {
558  av_log(avctx, AV_LOG_ERROR,
559  "Could not copy the frame data to the internal image buffer\n");
560  return -1;
561  }
562 
563  compress = opj_create_compress(ctx->format);
564  if (!compress) {
565  av_log(avctx, AV_LOG_ERROR, "Error creating the compressor\n");
566  return AVERROR(ENOMEM);
567  }
568 
569  opj_setup_encoder(compress, &ctx->enc_params, image);
570 
571  stream = opj_cio_open((opj_common_ptr) compress, NULL, 0);
572  if (!stream) {
573  av_log(avctx, AV_LOG_ERROR, "Error creating the cio stream\n");
574  return AVERROR(ENOMEM);
575  }
576 
577  memset(&ctx->event_mgr, 0, sizeof(ctx->event_mgr));
578  ctx->event_mgr.info_handler = info_callback;
579  ctx->event_mgr.error_handler = error_callback;
580  ctx->event_mgr.warning_handler = warning_callback;
581  opj_set_event_mgr((opj_common_ptr) compress, &ctx->event_mgr, avctx);
582 
583  if (!opj_encode(compress, stream, image, NULL)) {
584  av_log(avctx, AV_LOG_ERROR, "Error during the opj encode\n");
585  return -1;
586  }
587 
588  len = cio_tell(stream);
589  if ((ret = ff_alloc_packet2(avctx, pkt, len)) < 0) {
590  return ret;
591  }
592 
593  memcpy(pkt->data, stream->buffer, len);
594  pkt->flags |= AV_PKT_FLAG_KEY;
595  *got_packet = 1;
596 
597  opj_cio_close(stream);
598  stream = NULL;
599  opj_destroy_compress(compress);
600  compress = NULL;
601 
602  return 0;
603 }
604 
606 {
607  LibOpenJPEGContext *ctx = avctx->priv_data;
608 
609  opj_image_destroy(ctx->image);
610  ctx->image = NULL;
611  av_frame_free(&avctx->coded_frame);
612  return 0;
613 }
614 
615 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
616 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
617 static const AVOption options[] = {
618  { "format", "Codec Format", OFFSET(format), AV_OPT_TYPE_INT, { .i64 = CODEC_JP2 }, CODEC_J2K, CODEC_JP2, VE, "format" },
619  { "j2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K }, 0, 0, VE, "format" },
620  { "jp2", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2 }, 0, 0, VE, "format" },
621  { "profile", NULL, OFFSET(profile), AV_OPT_TYPE_INT, { .i64 = STD_RSIZ }, STD_RSIZ, CINEMA4K, VE, "profile" },
622  { "jpeg2000", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = STD_RSIZ }, 0, 0, VE, "profile" },
623  { "cinema2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K }, 0, 0, VE, "profile" },
624  { "cinema4k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K }, 0, 0, VE, "profile" },
625  { "cinema_mode", "Digital Cinema", OFFSET(cinema_mode), AV_OPT_TYPE_INT, { .i64 = OFF }, OFF, CINEMA4K_24, VE, "cinema_mode" },
626  { "off", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = OFF }, 0, 0, VE, "cinema_mode" },
627  { "2k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_24 }, 0, 0, VE, "cinema_mode" },
628  { "2k_48", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA2K_48 }, 0, 0, VE, "cinema_mode" },
629  { "4k_24", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CINEMA4K_24 }, 0, 0, VE, "cinema_mode" },
630  { "prog_order", "Progression Order", OFFSET(prog_order), AV_OPT_TYPE_INT, { .i64 = LRCP }, LRCP, CPRL, VE, "prog_order" },
631  { "lrcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = LRCP }, 0, 0, VE, "prog_order" },
632  { "rlcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RLCP }, 0, 0, VE, "prog_order" },
633  { "rpcl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = RPCL }, 0, 0, VE, "prog_order" },
634  { "pcrl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = PCRL }, 0, 0, VE, "prog_order" },
635  { "cprl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPRL }, 0, 0, VE, "prog_order" },
636  { "numresolution", NULL, OFFSET(numresolution), AV_OPT_TYPE_INT, { .i64 = 6 }, 1, INT_MAX, VE },
637  { "numlayers", NULL, OFFSET(numlayers), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, 10, VE },
638  { "disto_alloc", NULL, OFFSET(disto_alloc), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
639  { "fixed_alloc", NULL, OFFSET(fixed_alloc), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
640  { "fixed_quality", NULL, OFFSET(fixed_quality), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
641  { NULL },
642 };
643 
644 static const AVClass openjpeg_class = {
645  .class_name = "libopenjpeg",
646  .item_name = av_default_item_name,
647  .option = options,
648  .version = LIBAVUTIL_VERSION_INT,
649 };
650 
652  .name = "libopenjpeg",
653  .long_name = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
654  .type = AVMEDIA_TYPE_VIDEO,
655  .id = AV_CODEC_ID_JPEG2000,
656  .priv_data_size = sizeof(LibOpenJPEGContext),
658  .encode2 = libopenjpeg_encode_frame,
659  .close = libopenjpeg_encode_close,
661  .pix_fmts = (const enum AVPixelFormat[]) {
679  },
680  .priv_class = &openjpeg_class,
681 };
#define NULL
Definition: coverity.c:32
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1736
#define AV_PIX_FMT_YUVA422P16
Definition: pixfmt.h:399
static int libopenjpeg_copy_unpacked16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
#define AV_PIX_FMT_YUVA422P9
Definition: pixfmt.h:393
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2090
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
AVOption.
Definition: opt.h:255
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
#define AV_PIX_FMT_YUVA420P10
Definition: pixfmt.h:395
#define AV_PIX_FMT_YUV444P14
Definition: pixfmt.h:374
8bit gray, 8bit alpha
Definition: pixfmt.h:143
#define AV_PIX_FMT_YUVA422P10
Definition: pixfmt.h:396
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:65
AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:2745
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
#define AV_PIX_FMT_RGBA64
Definition: pixfmt.h:354
AVCodec ff_libopenjpeg_encoder
#define AV_PIX_FMT_GBRP10
Definition: pixfmt.h:380
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1444
static const AVClass openjpeg_class
#define AV_PIX_FMT_YUV420P12
Definition: pixfmt.h:368
static int libopenjpeg_copy_packed8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
static AVPacket pkt
AVCodec.
Definition: avcodec.h:3181
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:80
static av_cold int libopenjpeg_encode_close(AVCodecContext *avctx)
opj_cparameters_t enc_params
#define img
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
static int libopenjpeg_copy_unpacked8(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:103
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:100
#define av_cold
Definition: attributes.h:74
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
AVOptions.
#define CODEC_CAP_INTRA_ONLY
Codec is intra only.
Definition: avcodec.h:886
static void cinema_parameters(opj_cparameters_t *p)
#define AV_PIX_FMT_YUVA420P9
Definition: pixfmt.h:392
#define AV_PIX_FMT_GBRP9
Definition: pixfmt.h:379
static void warning_callback(const char *msg, void *data)
static AVFrame * frame
uint8_t * data
Definition: avcodec.h:1162
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:377
#define AV_PIX_FMT_YUV422P12
Definition: pixfmt.h:369
#define AV_PIX_FMT_YUVA420P16
Definition: pixfmt.h:398
#define av_log(a,...)
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1208
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition: pixfmt.h:269
uint16_t depth_minus1
Number of bits in the component minus 1.
Definition: pixdesc.h:57
static opj_image_t * mj2_create_image(AVCodecContext *avctx, opj_cparameters_t *parameters)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:89
int profile
Definition: mxfenc.c:1804
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
#define AV_PIX_FMT_YUVA444P16
Definition: pixfmt.h:400
#define AV_PIX_FMT_YA16
Definition: pixfmt.h:349
#define AV_PIX_FMT_RGB48
Definition: pixfmt.h:350
simple assert() macros that are a bit more flexible than ISO C assert().
static int libopenjpeg_copy_packed16(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
opj_image_t * image
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:367
#define FFMAX(a, b)
Definition: common.h:64
Libavcodec external API header.
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:95
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1168
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
#define AV_PIX_FMT_YUV422P9
Definition: pixfmt.h:362
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:71
#define AV_PIX_FMT_GBRP16
Definition: pixfmt.h:383
#define AV_PIX_FMT_GRAY16
Definition: pixfmt.h:348
#define VE
float y
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
#define AV_PIX_FMT_YUVA444P10
Definition: pixfmt.h:397
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:363
#define AV_PIX_FMT_GBRP14
Definition: pixfmt.h:382
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:449
static av_cold int libopenjpeg_encode_init(AVCodecContext *avctx)
#define AV_PIX_FMT_YUV420P16
Definition: pixfmt.h:375
#define AV_PIX_FMT_YUV420P14
Definition: pixfmt.h:372
int compression_level
Definition: avcodec.h:1327
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition: pixfmt.h:268
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
main external API structure.
Definition: avcodec.h:1241
static int libopenjpeg_copy_packed12(AVCodecContext *avctx, const AVFrame *frame, opj_image_t *image)
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:364
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:69
#define AV_PIX_FMT_XYZ12
Definition: pixfmt.h:402
Describe the class of an AVClass context structure.
Definition: log.h:67
opj_event_mgr_t event_mgr
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:361
#define AV_PIX_FMT_GBR24P
Definition: pixfmt.h:333
static void info_callback(const char *msg, void *data)
#define AV_PIX_FMT_YUV422P14
Definition: pixfmt.h:373
#define AV_PIX_FMT_GBRP12
Definition: pixfmt.h:381
int global_quality
Global quality for codecs which cannot change it per frame.
Definition: avcodec.h:1321
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:365
#define AV_PIX_FMT_YUV444P12
Definition: pixfmt.h:371
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
static int libopenjpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
Y , 8bpp.
Definition: pixfmt.h:71
common internal api header.
common internal and external API header
#define CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:866
#define AV_PIX_FMT_YUVA444P9
Definition: pixfmt.h:394
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:70
void * priv_data
Definition: avcodec.h:1283
int len
static const AVOption options[]
static void error_callback(const char *msg, void *data)
#define OFFSET(x)
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:101
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2011
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
This structure stores compressed data.
Definition: avcodec.h:1139
#define AV_PIX_FMT_YUV422P16
Definition: pixfmt.h:376
for(j=16;j >0;--j)
static int width