37 #if HAVE_OPENJPEG_1_5_OPENJPEG_H
38 # include <openjpeg-1.5/openjpeg.h>
40 # include <openjpeg.h>
43 #define JP2_SIG_TYPE 0x6A502020
44 #define JP2_SIG_VALUE 0x0D0A870A
48 #define RGB_PIXEL_FORMATS AV_PIX_FMT_RGB24,AV_PIX_FMT_RGBA,AV_PIX_FMT_RGB48,AV_PIX_FMT_RGBA64
49 #define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8,AV_PIX_FMT_GRAY8A,AV_PIX_FMT_GRAY16
50 #define YUV_PIXEL_FORMATS AV_PIX_FMT_YUV410P,AV_PIX_FMT_YUV411P,AV_PIX_FMT_YUVA420P, \
51 AV_PIX_FMT_YUV420P,AV_PIX_FMT_YUV422P,AV_PIX_FMT_YUVA422P, \
52 AV_PIX_FMT_YUV440P,AV_PIX_FMT_YUV444P,AV_PIX_FMT_YUVA444P, \
53 AV_PIX_FMT_YUV420P9,AV_PIX_FMT_YUV422P9,AV_PIX_FMT_YUV444P9, \
54 AV_PIX_FMT_YUVA420P9,AV_PIX_FMT_YUVA422P9,AV_PIX_FMT_YUVA444P9, \
55 AV_PIX_FMT_YUV420P10,AV_PIX_FMT_YUV422P10,AV_PIX_FMT_YUV444P10, \
56 AV_PIX_FMT_YUVA420P10,AV_PIX_FMT_YUVA422P10,AV_PIX_FMT_YUVA444P10, \
57 AV_PIX_FMT_YUV420P12,AV_PIX_FMT_YUV422P12,AV_PIX_FMT_YUV444P12, \
58 AV_PIX_FMT_YUV420P14,AV_PIX_FMT_YUV422P14,AV_PIX_FMT_YUV444P14, \
59 AV_PIX_FMT_YUV420P16,AV_PIX_FMT_YUV422P16,AV_PIX_FMT_YUV444P16, \
60 AV_PIX_FMT_YUVA420P16,AV_PIX_FMT_YUVA422P16,AV_PIX_FMT_YUVA444P16
84 case 4: match = match && desc->
comp[3].
depth_minus1 + 1 >= image->comps[3].prec &&
85 1 == image->comps[3].dx &&
86 1 == image->comps[3].dy;
87 case 3: match = match && desc->
comp[2].
depth_minus1 + 1 >= image->comps[2].prec &&
90 case 2: match = match && desc->
comp[1].
depth_minus1 + 1 >= image->comps[1].prec &&
93 case 1: match = match && desc->
comp[0].
depth_minus1 + 1 >= image->comps[0].prec &&
94 1 == image->comps[0].dx &&
95 1 == image->comps[0].dy;
106 int possible_fmts_nb = 0;
108 switch (image->color_space) {
127 for (index = 0; index < possible_fmts_nb; ++
index) {
129 return possible_fmts[
index];
139 int i, component_plane;
146 if (component_plane != desc->
comp[i].
plane)
155 for (y = 0; y < picture->
height; y++) {
156 index = y*picture->
width;
158 for (x = 0; x < picture->
width; x++, index++) {
159 for (c = 0; c < image->numcomps; c++) {
160 *img_ptr++ = image->comps[
c].data[
index];
170 for (x = 0; x < image->numcomps; x++)
171 adjust[x] =
FFMAX(
FFMIN(16 - image->comps[x].prec, 8), 0);
173 for (y = 0; y < picture->
height; y++) {
174 index = y*picture->
width;
175 img_ptr = (uint16_t*) (picture->
data[0] + y*picture->
linesize[0]);
176 for (x = 0; x < picture->
width; x++, index++) {
177 for (c = 0; c < image->numcomps; c++) {
178 *img_ptr++ = image->comps[
c].data[
index] << adjust[
c];
189 for (index = 0; index < image->numcomps; index++) {
190 comp_data = image->comps[
index].data;
191 for (y = 0; y < image->comps[
index].h; y++) {
193 for (x = 0; x < image->comps[
index].w; x++) {
194 *img_ptr = (
uint8_t) *comp_data;
206 for (index = 0; index < image->numcomps; index++) {
207 comp_data = image->comps[
index].data;
208 for (y = 0; y < image->comps[
index].h; y++) {
209 img_ptr = (uint16_t*) (picture->
data[index] + y * picture->
linesize[index]);
210 for (x = 0; x < image->comps[
index].w; x++) {
211 *img_ptr = *comp_data;
223 opj_set_default_decoder_parameters(&ctx->
dec_params);
238 void *
data,
int *got_frame,
242 int buf_size = avpkt->
size;
260 dec = opj_create_decompress(CODEC_JP2);
266 dec = opj_create_decompress(CODEC_J2K);
273 opj_set_event_mgr((opj_common_ptr)dec,
NULL,
NULL);
274 ctx->
dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
278 stream = opj_cio_open((opj_common_ptr)dec, buf, buf_size);
282 "Codestream could not be opened for reading.\n");
283 opj_destroy_decompress(dec);
288 image = opj_decode_with_info(dec, stream,
NULL);
289 opj_cio_close(stream);
293 opj_destroy_decompress(dec);
297 width = image->x1 - image->x0;
298 height = image->y1 - image->y0;
302 "%dx%d dimension invalid.\n", width, height);
319 for (i = 0; i < image->numcomps; i++)
323 if (picture->
data[0])
331 ctx->
dec_params.cp_limit_decoding = NO_LIMITATION;
335 stream = opj_cio_open((opj_common_ptr)dec, buf, buf_size);
338 "Codestream could not be opened for reading.\n");
342 opj_image_destroy(image);
344 image = opj_decode_with_info(dec, stream,
NULL);
345 opj_cio_close(stream);
356 switch (pixel_size) {
388 *output = ctx->
image;
393 opj_image_destroy(image);
394 opj_destroy_decompress(dec);
407 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
408 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
411 {
"lowqual",
"Limit the number of layers used for decoding",
OFFSET(lowqual),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VD },
423 .
name =
"libopenjpeg",
433 .priv_class = &
class,