1 /*
2 * JPEG 2000 decoding support via OpenJPEG
3 * Copyright (c) 2009 Jaikrishnan Menon <realityman@gmx.net>
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 decoder using libopenjpeg
25 */
26
32
36
37 #include <openjpeg.h>
38
39 #define JP2_SIG_TYPE 0x6A502020
40 #define JP2_SIG_VALUE 0x0D0A870A
41
42 // pix_fmts with lower bpp have to be listed before
43 // similar pix_fmts with higher bpp.
44 #define RGB_PIXEL_FORMATS AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA, \
45 AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64
46
47 #define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8, \
48 AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12, AV_PIX_FMT_GRAY14, \
49 AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16
50
51 #define YUV_PIXEL_FORMATS AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUVA420P, \
52 AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA422P, \
53 AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA444P, \
54 AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9, \
55 AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9, \
56 AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, \
57 AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10, \
58 AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, \
59 AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14, \
60 AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, \
61 AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16
62
63 #define XYZ_PIXEL_FORMATS AV_PIX_FMT_XYZ12
64
67 };
70 };
73 };
76 };
77
83
85 {
87 }
88
90 {
92 }
93
95 {
97 }
98
104
106 {
108 int remaining;
109
110 if (reader->
pos == reader->
size) {
111 return (OPJ_SIZE_T)-1;
112 }
113 remaining = reader->
size - reader->
pos;
114 if (nb_bytes > remaining) {
115 nb_bytes = remaining;
116 }
117 memcpy(out_buffer, reader->
buffer + reader->
pos, nb_bytes);
118 reader->
pos += (
int)nb_bytes;
119 return nb_bytes;
120 }
121
123 {
125 if (nb_bytes < 0) {
126 if (reader->
pos == 0) {
127 return (OPJ_SIZE_T)-1;
128 }
129 if (nb_bytes + reader->
pos < 0) {
130 nb_bytes = -reader->
pos;
131 }
132 } else {
133 int remaining;
134
135 if (reader->
pos == reader->
size) {
136 return (OPJ_SIZE_T)-1;
137 }
138 remaining = reader->
size - reader->
pos;
139 if (nb_bytes > remaining) {
140 nb_bytes = remaining;
141 }
142 }
143 reader->
pos += (
int)nb_bytes;
144 return nb_bytes;
145 }
146
148 {
150 if (nb_bytes < 0 || nb_bytes > reader->
size) {
151 return OPJ_FALSE;
152 }
153 reader->
pos = (
int)nb_bytes;
154 return OPJ_TRUE;
155 }
156
158 {
160 int match = 1;
161
162 if (
desc->nb_components != image->numcomps) {
163 return 0;
164 }
165
166 switch (
desc->nb_components) {
167 case 4:
168 match = match &&
169 desc->comp[3].depth >= image->comps[3].prec &&
170 1 == image->comps[3].dx &&
171 1 == image->comps[3].dy;
172 case 3:
173 match = match &&
174 desc->comp[2].depth >= image->comps[2].prec &&
175 1 <<
desc->log2_chroma_w == image->comps[2].dx &&
176 1 <<
desc->log2_chroma_h == image->comps[2].dy;
177 case 2:
178 match = match &&
179 desc->comp[1].depth >= image->comps[1].prec &&
180 1 <<
desc->log2_chroma_w == image->comps[1].dx &&
181 1 <<
desc->log2_chroma_h == image->comps[1].dy;
182 case 1:
183 match = match &&
184 desc->comp[0].depth >= image->comps[0].prec &&
185 1 == image->comps[0].dx &&
186 1 == image->comps[0].dy;
187 default:
188 break;
189 }
190
191 return match;
192 }
193
197 int possible_fmts_nb = 0;
198
199 switch (image->color_space) {
200 case OPJ_CLRSPC_SRGB:
203 break;
204 case OPJ_CLRSPC_GRAY:
207 break;
208 case OPJ_CLRSPC_SYCC:
211 break;
212 default:
215 break;
216 }
217
220 return possible_fmts[
index];
221 }
222
224 }
225
227 {
229 int i, component_plane;
230
232 return 0;
233
234 component_plane =
desc->comp[0].plane;
235 for (
i = 1;
i <
desc->nb_components;
i++)
236 if (component_plane !=
desc->comp[
i].plane)
237 return 0;
238 return 1;
239 }
240
242 uint8_t *img_ptr;
244 for (y = 0; y < picture->
height; y++) {
248 for (
c = 0;
c < image->numcomps;
c++)
249 *img_ptr++ = 0x80 * image->comps[
c].sgnd + image->comps[
c].data[
index];
250 }
251 }
252
254 uint16_t *img_ptr;
258 for (x = 0; x < image->numcomps; x++)
260
261 for (y = 0; y < picture->
height; y++) {
263 img_ptr = (uint16_t *) (picture->
data[0] + y * picture->
linesize[0]);
265 for (
c = 0;
c < image->numcomps;
c++)
266 *img_ptr++ = (1 << image->comps[
c].prec - 1) * image->comps[
c].sgnd +
268 }
269 }
270
272 int *comp_data;
273 uint8_t *img_ptr;
275
277 comp_data = image->comps[
index].data;
278 for (y = 0; y < image->comps[
index].h; y++) {
280 for (x = 0; x < image->comps[
index].w; x++) {
281 *img_ptr = 0x80 * image->comps[
index].sgnd + *comp_data;
282 img_ptr++;
283 comp_data++;
284 }
285 }
286 }
287 }
288
290 int *comp_data;
291 uint16_t *img_ptr;
295 for (x = 0; x < image->numcomps; x++)
297
299 comp_data = image->comps[
index].data;
300 for (y = 0; y < image->comps[
index].h; y++) {
302 for (x = 0; x < image->comps[
index].w; x++) {
303 *img_ptr = (1 << image->comps[
index].prec - 1) * image->comps[
index].sgnd +
305 img_ptr++;
306 comp_data++;
307 }
308 }
309 }
310 }
311
313 {
315
316 opj_set_default_decoder_parameters(&
ctx->dec_params);
317 return 0;
318 }
319
321 void *
data,
int *got_frame,
323 {
324 uint8_t *buf = avpkt->
data;
325 int buf_size = avpkt->
size;
331 int pixel_size = 0;
332 int ispacked = 0;
334 opj_image_t *image =
NULL;
336 opj_codec_t *dec =
NULL;
337 opj_stream_t *stream =
NULL;
338
339 *got_frame = 0;
340
341 // Check if input is a raw jpeg2k codestream or in jp2 wrapping
345 dec = opj_create_decompress(OPJ_CODEC_JP2);
346 } else {
347 /* If the AVPacket contains a jp2c box, then skip to
348 * the starting byte of the codestream. */
350 buf += 8;
351 dec = opj_create_decompress(OPJ_CODEC_J2K);
352 }
353
354 if (!dec) {
357 goto done;
358 }
359
365 goto done;
366 }
367
368 ctx->dec_params.cp_layer =
ctx->lowqual;
369 ctx->dec_params.cp_reduce = avctx->
lowres;
370
371 // Tie decoder with decoding parameters
372 opj_setup_decoder(dec, &
ctx->dec_params);
373
374 stream = opj_stream_default_create(OPJ_STREAM_READ);
375
376 if (!stream) {
378 "Codestream could not be opened for reading.\n");
380 goto done;
381 }
382
386 opj_stream_set_user_data(stream, &reader,
NULL);
387 opj_stream_set_user_data_length(stream, avpkt->
size);
388 // Decode the header only.
389 ret = !opj_read_header(stream, dec, &image);
390
394 goto done;
395 }
396
397 width = image->x1 - image->x0;
398 height = image->y1 - image->y0;
399
402 goto done;
403
407
410
414 goto done;
415 }
416 for (
i = 0;
i < image->numcomps;
i++)
419
421 goto done;
422
423 ret = !opj_decode(dec, stream, image);
424
428 goto done;
429 }
430
431 for (
i = 0;
i < image->numcomps;
i++) {
432 if (!image->comps[
i].data) {
434 "Image component %d contains no data.\n",
i);
436 goto done;
437 }
438 }
439
441 pixel_size =
desc->comp[0].step;
443
444 switch (pixel_size) {
445 case 1:
446 if (ispacked) {
448 } else {
450 }
451 break;
452 case 2:
453 if (ispacked) {
455 } else {
457 }
458 break;
459 case 3:
460 case 4:
461 if (ispacked) {
463 }
464 break;
465 case 6:
466 case 8:
467 if (ispacked) {
469 }
470 break;
471 default:
474 goto done;
475 }
476
477 *got_frame = 1;
481
482 done:
483 opj_image_destroy(image);
484 opj_stream_destroy(stream);
485 opj_destroy_codec(dec);
487 }
488
489 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
490 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
491
493 { "lowqual", "Limit the number of layers used for decoding",
496 };
497
503 };
504
506 .
name =
"libopenjpeg",
514 .max_lowres = 31,
516 .wrapper_name = "libopenjpeg",
517 };