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
28
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 #define JP2_SIG_TYPE 0x6A502020
44 #define JP2_SIG_VALUE 0x0D0A870A
45
46 // pix_fmts with lower bpp have to be listed before
47 // similar pix_fmts with higher bpp.
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
61
66
73
75 {
78
80 return 0;
81 }
82
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;
96 default:
97 break;
98 }
99
101 }
102
106 int possible_fmts_nb = 0;
107
108 switch (image->color_space) {
109 case CLRSPC_SRGB:
112 break;
113 case CLRSPC_GRAY:
116 break;
117 case CLRSPC_SYCC:
120 break;
121 default:
124 break;
125 }
126
127 for (index = 0; index < possible_fmts_nb; ++
index) {
129 return possible_fmts[
index];
130 }
131 }
132
134 }
135
137 {
139 int i, component_plane;
140
142 return 0;
143
146 if (component_plane != desc->
comp[i].
plane)
147 return 0;
148 }
149 return 1;
150 }
151
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];
161 }
162 }
163 }
164 }
165
167 uint16_t *img_ptr;
169 int adjust[4];
170 for (x = 0; x < image->numcomps; x++)
171 adjust[x] =
FFMAX(
FFMIN(16 - image->comps[x].prec, 8), 0);
172
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];
179 }
180 }
181 }
182 }
183
185 int *comp_data;
188
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;
195 img_ptr++;
196 comp_data++;
197 }
198 }
199 }
200 }
201
203 int *comp_data;
204 uint16_t *img_ptr;
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;
212 img_ptr++;
213 comp_data++;
214 }
215 }
216 }
217 }
218
220 {
222
223 opj_set_default_decoder_parameters(&ctx->
dec_params);
226 return 0;
227 }
228
230 {
232
234 return 0;
235 }
236
238 void *
data,
int *got_frame,
240 {
242 int buf_size = avpkt->
size;
246 opj_dinfo_t *dec;
247 opj_cio_t *stream;
248 opj_image_t *image;
250 int pixel_size = 0;
251 int ispacked = 0;
252 int i;
253
254 *got_frame = 0;
255
256 // Check if input is a raw jpeg2k codestream or in jp2 wrapping
260 dec = opj_create_decompress(CODEC_JP2);
261 } else {
262 /* If the AVPacket contains a jp2c box, then skip to
263 * the starting byte of the codestream. */
265 buf += 8;
266 dec = opj_create_decompress(CODEC_J2K);
267 }
268
269 if (!dec) {
271 return -1;
272 }
273 opj_set_event_mgr((opj_common_ptr)dec,
NULL,
NULL);
274 ctx->
dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
276 // Tie decoder with decoding parameters
278 stream = opj_cio_open((opj_common_ptr)dec, buf, buf_size);
279
280 if (!stream) {
282 "Codestream could not be opened for reading.\n");
283 opj_destroy_decompress(dec);
284 return -1;
285 }
286
287 // Decode the header only.
288 image = opj_decode_with_info(dec, stream,
NULL);
289 opj_cio_close(stream);
290
291 if (!image) {
293 opj_destroy_decompress(dec);
294 return -1;
295 }
296
297 width = image->x1 - image->x0;
298 height = image->y1 - image->y0;
299
302 "%dx%d dimension invalid.\n", width, height);
303 goto done;
304 }
305
307
311
314
317 goto done;
318 }
319 for (i = 0; i < image->numcomps; i++)
322
323 if (picture->
data[0])
325
328 goto done;
329 }
330
331 ctx->
dec_params.cp_limit_decoding = NO_LIMITATION;
333 // Tie decoder with decoding parameters.
335 stream = opj_cio_open((opj_common_ptr)dec, buf, buf_size);
336 if (!stream) {
338 "Codestream could not be opened for reading.\n");
339 goto done;
340 }
341
342 opj_image_destroy(image);
343 // Decode the codestream
344 image = opj_decode_with_info(dec, stream,
NULL);
345 opj_cio_close(stream);
346
347 if (!image) {
349 goto done;
350 }
351
355
356 switch (pixel_size) {
357 case 1:
358 if (ispacked) {
360 } else {
362 }
363 break;
364 case 2:
365 if (ispacked) {
367 } else {
369 }
370 break;
371 case 3:
372 case 4:
373 if (ispacked) {
375 }
376 break;
377 case 6:
378 case 8:
379 if (ispacked) {
381 }
382 break;
383 default:
385 goto done;
386 }
387
388 *output = ctx->
image;
389 *got_frame = 1;
390 ret = buf_size;
391
392 done:
393 opj_image_destroy(image);
394 opj_destroy_decompress(dec);
395 return ret;
396 }
397
399 {
401
404 return 0;
405 }
406
407 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
408 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
409
411 {
"lowqual",
"Limit the number of layers used for decoding",
OFFSET(lowqual),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
VD },
413 };
414
420 };
421
423 .
name =
"libopenjpeg",
431 .max_lowres = 31,
433 .priv_class = &class,
435 };