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