39 #define JP2_SIG_TYPE 0x6A502020
40 #define JP2_SIG_VALUE 0x0D0A870A
44 #define RGB_PIXEL_FORMATS AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, \
47 #define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_Y400A, \
50 #define YUV_PIXEL_FORMATS AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, \
51 AV_PIX_FMT_YUVA420P, \
52 AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, \
53 AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, \
54 AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, \
55 AV_PIX_FMT_YUV444P9, \
56 AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, \
57 AV_PIX_FMT_YUV444P10, \
58 AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, \
61 #define XYZ_PIXEL_FORMATS AV_PIX_FMT_XYZ12
92 1 == img->comps[3].dx &&
93 1 == img->comps[3].dy;
107 1 == img->comps[0].dx &&
108 1 == img->comps[0].dy;
120 int possible_fmts_nb = 0;
122 switch (image->color_space) {
141 for (index = 0; index < possible_fmts_nb; ++
index) {
143 return possible_fmts[
index];
153 int i, component_plane;
160 if (component_plane != desc->
comp[i].
plane)
171 for (y = 0; y < picture->
height; y++) {
172 index = y*picture->
width;
174 for (x = 0; x < picture->
width; x++, index++) {
175 for (c = 0; c < image->numcomps; c++) {
176 *img_ptr++ = image->comps[c].data[
index];
188 for (x = 0; x < image->numcomps; x++)
189 adjust[x] =
FFMAX(
FFMIN(16 - image->comps[x].prec, 8), 0);
191 for (y = 0; y < picture->
height; y++) {
192 index = y*picture->
width;
193 img_ptr = (uint16_t*) (picture->
data[0] + y*picture->
linesize[0]);
194 for (x = 0; x < picture->
width; x++, index++) {
195 for (c = 0; c < image->numcomps; c++) {
196 *img_ptr++ = image->comps[c].data[
index] << adjust[c];
208 for (index = 0; index < image->numcomps; index++) {
209 comp_data = image->comps[
index].data;
210 for (y = 0; y < image->comps[
index].h; y++) {
212 for (x = 0; x < image->comps[
index].w; x++) {
213 *img_ptr = (
uint8_t) *comp_data;
227 for (index = 0; index < image->numcomps; index++) {
228 comp_data = image->comps[
index].data;
229 for (y = 0; y < image->comps[
index].h; y++) {
230 img_ptr = (uint16_t*) (p->
data[index] + y * p->
linesize[index]);
231 for (x = 0; x < image->comps[
index].w; x++) {
232 *img_ptr = *comp_data;
244 opj_set_default_decoder_parameters(&ctx->
dec_params);
249 void *
data,
int *got_frame,
253 int buf_size = avpkt->
size;
272 dec = opj_create_decompress(CODEC_JP2);
278 dec = opj_create_decompress(CODEC_J2K);
285 opj_set_event_mgr((opj_common_ptr)dec,
NULL,
NULL);
287 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;
315 width = (width + (1 << ctx->
lowres) - 1) >> ctx->
lowres;
316 height = (height + (1 << ctx->
lowres) - 1) >> ctx->
lowres;
336 for (i = 0; i < image->numcomps; i++)
345 ctx->
dec_params.cp_limit_decoding = NO_LIMITATION;
348 stream = opj_cio_open((opj_common_ptr)dec, buf, buf_size);
351 "Codestream could not be opened for reading.\n");
356 opj_image_destroy(image);
358 image = opj_decode_with_info(dec, stream,
NULL);
359 opj_cio_close(stream);
371 switch (pixel_size) {
408 opj_image_destroy(image);
409 opj_destroy_decompress(dec);
413 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
414 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
417 {
"lowqual",
"Limit the number of layers used for decoding",
OFFSET(lowqual),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VD },
418 {
"lowres",
"Lower the decoding resolution by a power of two",
OFFSET(lowres),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VD },
430 .
name =
"libopenjpeg",
438 .priv_class = &
class,