]> git.sesse.net Git - ffmpeg/blob - libavcodec/libopenjpegdec.c
avcodec/golomb: get_ur_golomb_jpegls: Fix reading huge k values
[ffmpeg] / libavcodec / libopenjpegdec.c
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
27 #define  OPJ_STATIC
28
29 #include "libavutil/common.h"
30 #include "libavutil/imgutils.h"
31 #include "libavutil/intreadwrite.h"
32 #include "libavutil/opt.h"
33 #include "libavutil/pixfmt.h"
34
35 #include "avcodec.h"
36 #include "internal.h"
37 #include "thread.h"
38
39 #if HAVE_OPENJPEG_1_5_OPENJPEG_H
40 # include <openjpeg-1.5/openjpeg.h>
41 #else
42 # include <openjpeg.h>
43 #endif
44
45 #define JP2_SIG_TYPE    0x6A502020
46 #define JP2_SIG_VALUE   0x0D0A870A
47
48 // pix_fmts with lower bpp have to be listed before
49 // similar pix_fmts with higher bpp.
50 #define RGB_PIXEL_FORMATS  AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,                 \
51                            AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64
52
53 #define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8,                  \
54                            AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16
55
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
67
68 #define XYZ_PIXEL_FORMATS  AV_PIX_FMT_XYZ12
69
70 static const enum AVPixelFormat libopenjpeg_rgb_pix_fmts[]  = {
71     RGB_PIXEL_FORMATS
72 };
73 static const enum AVPixelFormat libopenjpeg_gray_pix_fmts[] = {
74     GRAY_PIXEL_FORMATS
75 };
76 static const enum AVPixelFormat libopenjpeg_yuv_pix_fmts[]  = {
77     YUV_PIXEL_FORMATS
78 };
79 static const enum AVPixelFormat libopenjpeg_all_pix_fmts[]  = {
80     RGB_PIXEL_FORMATS, GRAY_PIXEL_FORMATS, YUV_PIXEL_FORMATS, XYZ_PIXEL_FORMATS
81 };
82
83 typedef struct LibOpenJPEGContext {
84     AVClass *class;
85     opj_dparameters_t dec_params;
86     int lowqual;
87 } LibOpenJPEGContext;
88
89 static inline int libopenjpeg_matches_pix_fmt(const opj_image_t *image, enum AVPixelFormat pix_fmt)
90 {
91     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
92     int match = 1;
93
94     if (desc->nb_components != image->numcomps) {
95         return 0;
96     }
97
98     switch (desc->nb_components) {
99     case 4:
100         match = match &&
101                 desc->comp[3].depth_minus1 + 1 >= image->comps[3].prec &&
102                 1 == image->comps[3].dx &&
103                 1 == image->comps[3].dy;
104     case 3:
105         match = match &&
106                 desc->comp[2].depth_minus1 + 1 >= image->comps[2].prec &&
107                 1 << desc->log2_chroma_w == image->comps[2].dx &&
108                 1 << desc->log2_chroma_h == image->comps[2].dy;
109     case 2:
110         match = match &&
111                 desc->comp[1].depth_minus1 + 1 >= image->comps[1].prec &&
112                 1 << desc->log2_chroma_w == image->comps[1].dx &&
113                 1 << desc->log2_chroma_h == image->comps[1].dy;
114     case 1:
115         match = match &&
116                 desc->comp[0].depth_minus1 + 1 >= image->comps[0].prec &&
117                 1 == image->comps[0].dx &&
118                 1 == image->comps[0].dy;
119     default:
120         break;
121     }
122
123     return match;
124 }
125
126 static inline enum AVPixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *image) {
127     int index;
128     const enum AVPixelFormat *possible_fmts = NULL;
129     int possible_fmts_nb = 0;
130
131     switch (image->color_space) {
132     case CLRSPC_SRGB:
133         possible_fmts    = libopenjpeg_rgb_pix_fmts;
134         possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_rgb_pix_fmts);
135         break;
136     case CLRSPC_GRAY:
137         possible_fmts    = libopenjpeg_gray_pix_fmts;
138         possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_gray_pix_fmts);
139         break;
140     case CLRSPC_SYCC:
141         possible_fmts    = libopenjpeg_yuv_pix_fmts;
142         possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_yuv_pix_fmts);
143         break;
144     default:
145         possible_fmts    = libopenjpeg_all_pix_fmts;
146         possible_fmts_nb = FF_ARRAY_ELEMS(libopenjpeg_all_pix_fmts);
147         break;
148     }
149
150     for (index = 0; index < possible_fmts_nb; ++index)
151         if (libopenjpeg_matches_pix_fmt(image, possible_fmts[index])) {
152             return possible_fmts[index];
153         }
154
155     return AV_PIX_FMT_NONE;
156 }
157
158 static inline int libopenjpeg_ispacked(enum AVPixelFormat pix_fmt)
159 {
160     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
161     int i, component_plane;
162
163     if (pix_fmt == AV_PIX_FMT_GRAY16)
164         return 0;
165
166     component_plane = desc->comp[0].plane;
167     for (i = 1; i < desc->nb_components; i++)
168         if (component_plane != desc->comp[i].plane)
169             return 0;
170     return 1;
171 }
172
173 static inline void libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image) {
174     uint8_t *img_ptr;
175     int index, x, y, c;
176     for (y = 0; y < picture->height; y++) {
177         index   = y * picture->width;
178         img_ptr = picture->data[0] + y * picture->linesize[0];
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];
182     }
183 }
184
185 static inline void libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image) {
186     uint16_t *img_ptr;
187     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
188     int index, x, y, c;
189     int adjust[4];
190     for (x = 0; x < image->numcomps; x++)
191         adjust[x] = FFMAX(FFMIN(desc->comp[x].depth_minus1 + 1 - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
192
193     for (y = 0; y < picture->height; y++) {
194         index   = y * picture->width;
195         img_ptr = (uint16_t *) (picture->data[0] + y * picture->linesize[0]);
196         for (x = 0; x < picture->width; x++, index++)
197             for (c = 0; c < image->numcomps; c++)
198                 *img_ptr++ = (1 << image->comps[c].prec - 1) * image->comps[c].sgnd +
199                              (unsigned)image->comps[c].data[index] << adjust[c];
200     }
201 }
202
203 static inline void libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) {
204     int *comp_data;
205     uint8_t *img_ptr;
206     int index, x, y;
207
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++) {
211             img_ptr = picture->data[index] + y * picture->linesize[index];
212             for (x = 0; x < image->comps[index].w; x++) {
213                 *img_ptr = 0x80 * image->comps[index].sgnd + *comp_data;
214                 img_ptr++;
215                 comp_data++;
216             }
217         }
218     }
219 }
220
221 static inline void libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) {
222     int *comp_data;
223     uint16_t *img_ptr;
224     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(picture->format);
225     int index, x, y;
226     int adjust[4];
227     for (x = 0; x < image->numcomps; x++)
228         adjust[x] = FFMAX(FFMIN(desc->comp[x].depth_minus1 + 1 - image->comps[x].prec, 8), 0) + desc->comp[x].shift;
229
230     for (index = 0; index < image->numcomps; index++) {
231         comp_data = image->comps[index].data;
232         for (y = 0; y < image->comps[index].h; y++) {
233             img_ptr = (uint16_t *)(picture->data[index] + y * picture->linesize[index]);
234             for (x = 0; x < image->comps[index].w; x++) {
235                 *img_ptr = (1 << image->comps[index].prec - 1) * image->comps[index].sgnd +
236                            (unsigned)*comp_data << adjust[index];
237                 img_ptr++;
238                 comp_data++;
239             }
240         }
241     }
242 }
243
244 static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx)
245 {
246     LibOpenJPEGContext *ctx = avctx->priv_data;
247
248     opj_set_default_decoder_parameters(&ctx->dec_params);
249     return 0;
250 }
251
252 static int libopenjpeg_decode_frame(AVCodecContext *avctx,
253                                     void *data, int *got_frame,
254                                     AVPacket *avpkt)
255 {
256     uint8_t *buf            = avpkt->data;
257     int buf_size            = avpkt->size;
258     LibOpenJPEGContext *ctx = avctx->priv_data;
259     ThreadFrame frame       = { .f = data };
260     AVFrame *picture        = data;
261     const AVPixFmtDescriptor *desc;
262     opj_dinfo_t *dec;
263     opj_cio_t *stream;
264     opj_image_t *image;
265     int width, height, ret;
266     int pixel_size = 0;
267     int ispacked   = 0;
268     int i;
269
270     *got_frame = 0;
271
272     // Check if input is a raw jpeg2k codestream or in jp2 wrapping
273     if ((AV_RB32(buf) == 12) &&
274         (AV_RB32(buf + 4) == JP2_SIG_TYPE) &&
275         (AV_RB32(buf + 8) == JP2_SIG_VALUE)) {
276         dec = opj_create_decompress(CODEC_JP2);
277     } else {
278         /* If the AVPacket contains a jp2c box, then skip to
279          * the starting byte of the codestream. */
280         if (AV_RB32(buf + 4) == AV_RB32("jp2c"))
281             buf += 8;
282         dec = opj_create_decompress(CODEC_J2K);
283     }
284
285     if (!dec) {
286         av_log(avctx, AV_LOG_ERROR, "Error initializing decoder.\n");
287         return AVERROR_UNKNOWN;
288     }
289     opj_set_event_mgr((opj_common_ptr) dec, NULL, NULL);
290     ctx->dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
291     ctx->dec_params.cp_layer          = ctx->lowqual;
292     // Tie decoder with decoding parameters
293     opj_setup_decoder(dec, &ctx->dec_params);
294     stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
295
296     if (!stream) {
297         av_log(avctx, AV_LOG_ERROR,
298                "Codestream could not be opened for reading.\n");
299         opj_destroy_decompress(dec);
300         return AVERROR_UNKNOWN;
301     }
302
303     // Decode the header only.
304     image = opj_decode_with_info(dec, stream, NULL);
305     opj_cio_close(stream);
306
307     if (!image) {
308         av_log(avctx, AV_LOG_ERROR, "Error decoding codestream.\n");
309         opj_destroy_decompress(dec);
310         return AVERROR_UNKNOWN;
311     }
312
313     width  = image->x1 - image->x0;
314     height = image->y1 - image->y0;
315
316     ret = ff_set_dimensions(avctx, width, height);
317     if (ret < 0)
318         goto done;
319
320     if (avctx->pix_fmt != AV_PIX_FMT_NONE)
321         if (!libopenjpeg_matches_pix_fmt(image, avctx->pix_fmt))
322             avctx->pix_fmt = AV_PIX_FMT_NONE;
323
324     if (avctx->pix_fmt == AV_PIX_FMT_NONE)
325         avctx->pix_fmt = libopenjpeg_guess_pix_fmt(image);
326
327     if (avctx->pix_fmt == AV_PIX_FMT_NONE) {
328         av_log(avctx, AV_LOG_ERROR, "Unable to determine pixel format\n");
329         goto done;
330     }
331     for (i = 0; i < image->numcomps; i++)
332         if (image->comps[i].prec > avctx->bits_per_raw_sample)
333             avctx->bits_per_raw_sample = image->comps[i].prec;
334
335     if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
336         goto done;
337
338     ctx->dec_params.cp_limit_decoding = NO_LIMITATION;
339     ctx->dec_params.cp_reduce = avctx->lowres;
340     // Tie decoder with decoding parameters.
341     opj_setup_decoder(dec, &ctx->dec_params);
342     stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
343     if (!stream) {
344         av_log(avctx, AV_LOG_ERROR,
345                "Codestream could not be opened for reading.\n");
346         ret = AVERROR_UNKNOWN;
347         goto done;
348     }
349
350     opj_image_destroy(image);
351     // Decode the codestream
352     image = opj_decode_with_info(dec, stream, NULL);
353     opj_cio_close(stream);
354
355     if (!image) {
356         av_log(avctx, AV_LOG_ERROR, "Error decoding codestream.\n");
357         ret = AVERROR_UNKNOWN;
358         goto done;
359     }
360
361     desc       = av_pix_fmt_desc_get(avctx->pix_fmt);
362     pixel_size = desc->comp[0].step_minus1 + 1;
363     ispacked   = libopenjpeg_ispacked(avctx->pix_fmt);
364
365     switch (pixel_size) {
366     case 1:
367         if (ispacked) {
368             libopenjpeg_copy_to_packed8(picture, image);
369         } else {
370             libopenjpeg_copyto8(picture, image);
371         }
372         break;
373     case 2:
374         if (ispacked) {
375             libopenjpeg_copy_to_packed8(picture, image);
376         } else {
377             libopenjpeg_copyto16(picture, image);
378         }
379         break;
380     case 3:
381     case 4:
382         if (ispacked) {
383             libopenjpeg_copy_to_packed8(picture, image);
384         }
385         break;
386     case 6:
387     case 8:
388         if (ispacked) {
389             libopenjpeg_copy_to_packed16(picture, image);
390         }
391         break;
392     default:
393         av_log(avctx, AV_LOG_ERROR, "unsupported pixel size %d\n", pixel_size);
394         ret = AVERROR_PATCHWELCOME;
395         goto done;
396     }
397
398     *got_frame = 1;
399     ret        = buf_size;
400
401 done:
402     opj_image_destroy(image);
403     opj_destroy_decompress(dec);
404     return ret;
405 }
406
407 #define OFFSET(x) offsetof(LibOpenJPEGContext, x)
408 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
409
410 static const AVOption options[] = {
411     { "lowqual", "Limit the number of layers used for decoding",
412         OFFSET(lowqual), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VD },
413     { NULL },
414 };
415
416 static const AVClass openjpeg_class = {
417     .class_name = "libopenjpeg",
418     .item_name  = av_default_item_name,
419     .option     = options,
420     .version    = LIBAVUTIL_VERSION_INT,
421 };
422
423 AVCodec ff_libopenjpeg_decoder = {
424     .name           = "libopenjpeg",
425     .long_name      = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
426     .type           = AVMEDIA_TYPE_VIDEO,
427     .id             = AV_CODEC_ID_JPEG2000,
428     .priv_data_size = sizeof(LibOpenJPEGContext),
429     .init           = libopenjpeg_decode_init,
430     .decode         = libopenjpeg_decode_frame,
431     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
432     .max_lowres     = 31,
433     .priv_class     = &openjpeg_class,
434 };