libopenjpegdec.c 12.8 KB
Newer Older
J
Jai Menon 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * JPEG 2000 decoding support via OpenJPEG
 * Copyright (c) 2009 Jaikrishnan Menon <realityman@gmx.net>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
23
* @file
J
Jai Menon 已提交
24 25 26
* JPEG 2000 decoder using libopenjpeg
*/

27
#include "libavutil/imgutils.h"
28
#include "libavutil/pixfmt.h"
J
Jai Menon 已提交
29 30
#include "avcodec.h"
#include "libavutil/intreadwrite.h"
31
#include "thread.h"
J
Jai Menon 已提交
32
#define  OPJ_STATIC
33
#include <openjpeg.h>
J
Jai Menon 已提交
34 35 36 37

#define JP2_SIG_TYPE    0x6A502020
#define JP2_SIG_VALUE   0x0D0A870A

38 39 40 41 42 43 44 45 46 47 48 49 50
#define RGB_PIXEL_FORMATS   PIX_FMT_RGB24,PIX_FMT_RGBA,PIX_FMT_RGB48,PIX_FMT_RGBA64
#define GRAY_PIXEL_FORMATS  PIX_FMT_GRAY8,PIX_FMT_GRAY8A,PIX_FMT_GRAY16
#define YUV_PIXEL_FORMATS   PIX_FMT_YUV420P,PIX_FMT_YUV422P,PIX_FMT_YUVA420P, \
                            PIX_FMT_YUV440P,PIX_FMT_YUV444P, \
                            PIX_FMT_YUV420P9,PIX_FMT_YUV422P9,PIX_FMT_YUV444P9, \
                            PIX_FMT_YUV420P10,PIX_FMT_YUV422P10,PIX_FMT_YUV444P10, \
                            PIX_FMT_YUV420P16,PIX_FMT_YUV422P16,PIX_FMT_YUV444P16

static const enum PixelFormat libopenjpeg_rgb_pix_fmts[]  = {RGB_PIXEL_FORMATS};
static const enum PixelFormat libopenjpeg_gray_pix_fmts[] = {GRAY_PIXEL_FORMATS};
static const enum PixelFormat libopenjpeg_yuv_pix_fmts[]  = {YUV_PIXEL_FORMATS};
static const enum PixelFormat libopenjpeg_all_pix_fmts[]  = {RGB_PIXEL_FORMATS,GRAY_PIXEL_FORMATS,YUV_PIXEL_FORMATS};

J
Jai Menon 已提交
51 52 53 54 55
typedef struct {
    opj_dparameters_t dec_params;
    AVFrame image;
} LibOpenJPEGContext;

56 57 58
static inline int libopenjpeg_matches_pix_fmt(const opj_image_t *image, enum PixelFormat pix_fmt){
    AVPixFmtDescriptor descriptor = av_pix_fmt_descriptors[pix_fmt];
    int match = 1;
59

60 61
    if (descriptor.nb_components != image->numcomps) {
        return 0;
62 63
    }

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
    switch (descriptor.nb_components) {
    case 4: match = match && descriptor.comp[3].depth_minus1 + 1 == image->comps[3].prec &&
                             1 << descriptor.log2_chroma_w == image->comps[3].dx &&
                             1 << descriptor.log2_chroma_h == image->comps[3].dy;
    case 3: match = match && descriptor.comp[2].depth_minus1 + 1 == image->comps[2].prec &&
                             1 << descriptor.log2_chroma_w == image->comps[2].dx &&
                             1 << descriptor.log2_chroma_h == image->comps[2].dy;
    case 2: match = match && descriptor.comp[1].depth_minus1 + 1 == image->comps[1].prec &&
                             1 << descriptor.log2_chroma_w == image->comps[1].dx &&
                             1 << descriptor.log2_chroma_h == image->comps[1].dy;
    case 1: match = match && descriptor.comp[0].depth_minus1 + 1 == image->comps[0].prec &&
                             1 == image->comps[0].dx &&
                             1 == image->comps[0].dy;
    default:
        break;
79 80
    }

81 82
    return match;
}
83

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
static inline enum PixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *image) {
    int index;
    const enum PixelFormat *possible_fmts = NULL;
    int possible_fmts_nb = 0;

    switch (image->color_space) {
    case CLRSPC_SRGB:
        possible_fmts = libopenjpeg_rgb_pix_fmts;
        possible_fmts_nb = sizeof(libopenjpeg_rgb_pix_fmts) / sizeof(enum PixelFormat);
        break;
    case CLRSPC_GRAY:
        possible_fmts = libopenjpeg_gray_pix_fmts;
        possible_fmts_nb = sizeof(libopenjpeg_gray_pix_fmts) / sizeof(enum PixelFormat);
        break;
    case CLRSPC_SYCC:
        possible_fmts = libopenjpeg_yuv_pix_fmts;
        possible_fmts_nb = sizeof(libopenjpeg_yuv_pix_fmts) / sizeof(enum PixelFormat);
        break;
    default:
        possible_fmts = libopenjpeg_all_pix_fmts;
        possible_fmts_nb = sizeof(libopenjpeg_all_pix_fmts) / sizeof(enum PixelFormat);
        break;
106
    }
107

108 109 110 111
    for (index = 0; index < possible_fmts_nb; ++index) {
        if (libopenjpeg_matches_pix_fmt(image, possible_fmts[index])) {
            return possible_fmts[index];
        }
112 113
    }

114
    return PIX_FMT_NONE;
115 116 117 118
}

static inline int libopenjpeg_ispacked(enum PixelFormat pix_fmt) {
    int i, component_plane;
119 120 121 122

    if (pix_fmt == PIX_FMT_GRAY16)
        return 0;

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
    component_plane = av_pix_fmt_descriptors[pix_fmt].comp[0].plane;
    for(i = 1; i < av_pix_fmt_descriptors[pix_fmt].nb_components; i++) {
        if (component_plane != av_pix_fmt_descriptors[pix_fmt].comp[i].plane)
            return 0;
    }
    return 1;
}

static inline void libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image) {
    uint8_t *img_ptr;
    int index, x, y, c;
    for(y = 0; y < picture->height; y++) {
        index = y*picture->width;
        img_ptr = picture->data[0] + y*picture->linesize[0];
        for(x = 0; x < picture->width; x++, index++) {
            for(c = 0; c < image->numcomps; c++) {
                *img_ptr++ = image->comps[c].data[index];
            }
        }
    }
}

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
static inline void libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image) {
    uint16_t *img_ptr;
    int index, x, y, c;
    int adjust[4];
    for (x = 0; x < image->numcomps; x++) {
        adjust[x] = FFMAX(FFMIN(16 - image->comps[x].prec, 8), 0);
    }
    for (y = 0; y < picture->height; y++) {
        index = y*picture->width;
        img_ptr = (uint16_t*) (picture->data[0] + y*picture->linesize[0]);
        for (x = 0; x < picture->width; x++, index++) {
            for (c = 0; c < image->numcomps; c++) {
                *img_ptr++ = image->comps[c].data[index] << adjust[c];
            }
        }
    }
}

163 164 165 166 167 168 169 170
static inline void libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) {
    int *comp_data;
    uint8_t *img_ptr;
    int index, x, y;

    for(index = 0; index < image->numcomps; index++) {
        comp_data = image->comps[index].data;
        for(y = 0; y < image->comps[index].h; y++) {
171
            img_ptr = picture->data[index] + y * picture->linesize[index];
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
            for(x = 0; x < image->comps[index].w; x++) {
                *img_ptr = (uint8_t) *comp_data;
                img_ptr++;
                comp_data++;
            }
        }
    }
}

static inline void libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) {
    int *comp_data;
    uint16_t *img_ptr;
    int index, x, y;
    for(index = 0; index < image->numcomps; index++) {
        comp_data = image->comps[index].data;
        for(y = 0; y < image->comps[index].h; y++) {
188
            img_ptr = (uint16_t*) (picture->data[index] + y * picture->linesize[index]);
189 190 191 192 193 194 195
            for(x = 0; x < image->comps[index].w; x++) {
                *img_ptr = *comp_data;
                img_ptr++;
                comp_data++;
            }
        }
    }
J
Jai Menon 已提交
196 197 198 199 200 201 202
}

static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx)
{
    LibOpenJPEGContext *ctx = avctx->priv_data;

    opj_set_default_decoder_parameters(&ctx->dec_params);
203
    avcodec_get_frame_defaults(&ctx->image);
J
Jai Menon 已提交
204 205 206 207
    avctx->coded_frame = &ctx->image;
    return 0;
}

208 209 210 211 212 213 214 215
static av_cold int libopenjpeg_decode_init_thread_copy(AVCodecContext *avctx)
{
    LibOpenJPEGContext *ctx = avctx->priv_data;

    avctx->coded_frame = &ctx->image;
    return 0;
}

J
Jai Menon 已提交
216 217
static int libopenjpeg_decode_frame(AVCodecContext *avctx,
                                    void *data, int *data_size,
218
                                    AVPacket *avpkt)
J
Jai Menon 已提交
219
{
220
    uint8_t *buf = avpkt->data;
221
    int buf_size = avpkt->size;
J
Jai Menon 已提交
222 223 224 225 226
    LibOpenJPEGContext *ctx = avctx->priv_data;
    AVFrame *picture = &ctx->image, *output = data;
    opj_dinfo_t *dec;
    opj_cio_t *stream;
    opj_image_t *image;
227 228 229
    int width, height, ret = -1;
    int pixel_size = 0;
    int ispacked = 0;
J
Jai Menon 已提交
230 231 232 233 234 235 236

    *data_size = 0;

    // Check if input is a raw jpeg2k codestream or in jp2 wrapping
    if((AV_RB32(buf) == 12) &&
       (AV_RB32(buf + 4) == JP2_SIG_TYPE) &&
       (AV_RB32(buf + 8) == JP2_SIG_VALUE)) {
J
Jai Menon 已提交
237
        dec = opj_create_decompress(CODEC_JP2);
J
Jai Menon 已提交
238
    } else {
239 240 241 242
        // If the AVPacket contains a jp2c box, then skip to
        // the starting byte of the codestream.
        if (AV_RB32(buf + 4) == AV_RB32("jp2c"))
            buf += 8;
J
Jai Menon 已提交
243
        dec = opj_create_decompress(CODEC_J2K);
J
Jai Menon 已提交
244 245 246 247 248 249 250 251
    }

    if(!dec) {
        av_log(avctx, AV_LOG_ERROR, "Error initializing decoder.\n");
        return -1;
    }
    opj_set_event_mgr((opj_common_ptr)dec, NULL, NULL);

252
    ctx->dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
J
Jai Menon 已提交
253 254 255 256 257 258 259 260 261
    // Tie decoder with decoding parameters
    opj_setup_decoder(dec, &ctx->dec_params);
    stream = opj_cio_open((opj_common_ptr)dec, buf, buf_size);
    if(!stream) {
        av_log(avctx, AV_LOG_ERROR, "Codestream could not be opened for reading.\n");
        opj_destroy_decompress(dec);
        return -1;
    }

262
    // Decode the header only
J
Jai Menon 已提交
263 264 265 266 267 268 269
    image = opj_decode_with_info(dec, stream, NULL);
    opj_cio_close(stream);
    if(!image) {
        av_log(avctx, AV_LOG_ERROR, "Error decoding codestream.\n");
        opj_destroy_decompress(dec);
        return -1;
    }
270 271
    width  = image->x1 - image->x0;
    height = image->y1 - image->y0;
272
    if(av_image_check_size(width, height, 0, avctx) < 0) {
J
Jai Menon 已提交
273 274 275 276 277
        av_log(avctx, AV_LOG_ERROR, "%dx%d dimension invalid.\n", width, height);
        goto done;
    }
    avcodec_set_dimensions(avctx, width, height);

278 279 280 281 282 283 284 285 286 287 288 289 290
    if (avctx->pix_fmt != PIX_FMT_NONE) {
        if (!libopenjpeg_matches_pix_fmt(image, avctx->pix_fmt)) {
            avctx->pix_fmt = PIX_FMT_NONE;
        }
    }

    if (avctx->pix_fmt == PIX_FMT_NONE) {
        avctx->pix_fmt = libopenjpeg_guess_pix_fmt(image);
    }

    if (avctx->pix_fmt == PIX_FMT_NONE) {
        av_log(avctx, AV_LOG_ERROR, "Unable to determine pixel format\n");
        goto done;
J
Jai Menon 已提交
291 292 293
    }

    if(picture->data[0])
294 295 296 297
        ff_thread_release_buffer(avctx, picture);

    if(ff_thread_get_buffer(avctx, picture) < 0){
        av_log(avctx, AV_LOG_ERROR, "ff_thread_get_buffer() failed\n");
298
        goto done;
299
    }
J
Jai Menon 已提交
300

301
    ctx->dec_params.cp_limit_decoding = NO_LIMITATION;
M
Michael Niedermayer 已提交
302
    ctx->dec_params.cp_reduce = avctx->lowres;
303 304 305 306 307
    // Tie decoder with decoding parameters
    opj_setup_decoder(dec, &ctx->dec_params);
    stream = opj_cio_open((opj_common_ptr)dec, buf, buf_size);
    if(!stream) {
        av_log(avctx, AV_LOG_ERROR, "Codestream could not be opened for reading.\n");
308
        goto done;
J
Jai Menon 已提交
309 310
    }

311
    opj_image_destroy(image);
312 313 314
    // Decode the codestream
    image = opj_decode_with_info(dec, stream, NULL);
    opj_cio_close(stream);
315 316
    if(!image) {
        av_log(avctx, AV_LOG_ERROR, "Error decoding codestream.\n");
317
        goto done;
318
    }
319

320 321
    pixel_size = av_pix_fmt_descriptors[avctx->pix_fmt].comp[0].step_minus1 + 1;
    ispacked = libopenjpeg_ispacked(avctx->pix_fmt);
J
Jai Menon 已提交
322

323 324 325 326 327 328
    switch (pixel_size) {
    case 1:
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        } else {
            libopenjpeg_copyto8(picture, image);
J
Jai Menon 已提交
329
        }
330 331
        break;
    case 2:
332 333 334 335 336
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        } else {
            libopenjpeg_copyto16(picture, image);
        }
337 338
        break;
    case 3:
339
    case 4:
340 341 342 343
        if (ispacked) {
            libopenjpeg_copy_to_packed8(picture, image);
        }
        break;
344
    case 6:
345
    case 8:
346 347 348 349
        if (ispacked) {
            libopenjpeg_copy_to_packed16(picture, image);
        }
        break;
350 351 352
    default:
        av_log(avctx, AV_LOG_ERROR, "unsupported pixel size %d\n", pixel_size);
        goto done;
J
Jai Menon 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
    }

    *output    = ctx->image;
    *data_size = sizeof(AVPicture);
    ret = buf_size;

done:
    opj_image_destroy(image);
    opj_destroy_decompress(dec);
    return ret;
}

static av_cold int libopenjpeg_decode_close(AVCodecContext *avctx)
{
    LibOpenJPEGContext *ctx = avctx->priv_data;

    if(ctx->image.data[0])
370
        ff_thread_release_buffer(avctx, &ctx->image);
J
Jai Menon 已提交
371 372 373 374
    return 0 ;
}


375
AVCodec ff_libopenjpeg_decoder = {
376 377 378 379 380 381 382 383 384
    .name             = "libopenjpeg",
    .type             = AVMEDIA_TYPE_VIDEO,
    .id               = CODEC_ID_JPEG2000,
    .priv_data_size   = sizeof(LibOpenJPEGContext),
    .init             = libopenjpeg_decode_init,
    .close            = libopenjpeg_decode_close,
    .decode           = libopenjpeg_decode_frame,
    .capabilities     = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
    .max_lowres       = 5,
385
    .long_name        = NULL_IF_CONFIG_SMALL("OpenJPEG JPEG 2000"),
386
    .init_thread_copy = ONLY_IF_THREADS_ENABLED(libopenjpeg_decode_init_thread_copy),
387
};