39 #if HAVE_OPENJPEG_1_5_OPENJPEG_H
40 # include <openjpeg-1.5/openjpeg.h>
42 # include <openjpeg.h>
45 #define JP2_SIG_TYPE 0x6A502020
46 #define JP2_SIG_VALUE 0x0D0A870A
50 #define RGB_PIXEL_FORMATS AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, \
51 AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64
53 #define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8, \
56 #define YUV_PIXEL_FORMATS AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUVA420P, \
57 AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA422P, \
58 AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA444P, \
59 AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9, \
60 AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9, \
61 AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, \
62 AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10, \
63 AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, \
64 AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14, \
65 AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, \
66 AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16
68 #define XYZ_PIXEL_FORMATS AV_PIX_FMT_XYZ12
102 1 == image->comps[3].dx &&
103 1 == image->comps[3].dy;
117 1 == image->comps[0].dx &&
118 1 == image->comps[0].dy;
129 int possible_fmts_nb = 0;
131 switch (image->color_space) {
150 for (index = 0; index < possible_fmts_nb; ++
index)
152 return possible_fmts[
index];
161 int i, component_plane;
168 if (component_plane != desc->
comp[i].
plane)
176 for (y = 0; y < picture->
height; y++) {
177 index = y * picture->
width;
179 for (x = 0; x < picture->
width; x++, index++)
180 for (c = 0; c < image->numcomps; c++)
181 *img_ptr++ = 0x80 * image->comps[c].sgnd + image->comps[c].data[index];
189 for (x = 0; x < image->numcomps; x++)
192 for (y = 0; y < picture->
height; y++) {
193 index = y * picture->
width;
194 img_ptr = (uint16_t *) (picture->
data[0] + y * picture->
linesize[0]);
195 for (x = 0; x < picture->
width; x++, index++)
196 for (c = 0; c < image->numcomps; c++)
197 *img_ptr++ = (1 << image->comps[c].prec - 1) * image->comps[
c].sgnd +
198 (unsigned)image->comps[c].data[index] << adjust[c];
207 for (index = 0; index < image->numcomps; index++) {
208 comp_data = image->comps[
index].data;
209 for (y = 0; y < image->comps[
index].h; y++) {
211 for (x = 0; x < image->comps[
index].w; x++) {
212 *img_ptr = 0x80 * image->comps[
index].sgnd + *comp_data;
225 for (x = 0; x < image->numcomps; x++)
228 for (index = 0; index < image->numcomps; index++) {
229 comp_data = image->comps[
index].data;
230 for (y = 0; y < image->comps[
index].h; y++) {
231 img_ptr = (uint16_t *)(picture->
data[index] + y * picture->
linesize[index]);
232 for (x = 0; x < image->comps[
index].w; x++) {
233 *img_ptr = (1 << image->comps[
index].prec - 1) * image->comps[index].sgnd +
234 (
unsigned)*comp_data << adjust[
index];
246 opj_set_default_decoder_parameters(&ctx->
dec_params);
251 void *
data,
int *got_frame,
255 int buf_size = avpkt->
size;
274 dec = opj_create_decompress(CODEC_JP2);
280 dec = opj_create_decompress(CODEC_J2K);
287 opj_set_event_mgr((opj_common_ptr) dec, NULL, NULL);
288 ctx->
dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
292 stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
296 "Codestream could not be opened for reading.\n");
297 opj_destroy_decompress(dec);
302 image = opj_decode_with_info(dec, stream, NULL);
303 opj_cio_close(stream);
307 opj_destroy_decompress(dec);
311 width = image->x1 - image->x0;
312 height = image->y1 - image->y0;
329 for (i = 0; i < image->numcomps; i++)
336 ctx->
dec_params.cp_limit_decoding = NO_LIMITATION;
340 stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
343 "Codestream could not be opened for reading.\n");
348 opj_image_destroy(image);
350 image = opj_decode_with_info(dec, stream, NULL);
351 opj_cio_close(stream);
363 switch (pixel_size) {
400 opj_image_destroy(image);
401 opj_destroy_decompress(dec);
405 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
406 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
409 {
"lowqual",
"Limit the number of layers used for decoding",
422 .
name =
"libopenjpeg",
431 .priv_class = &openjpeg_class,