39 #if HAVE_OPENJPEG_2_1_OPENJPEG_H 
   40 #  include <openjpeg-2.1/openjpeg.h> 
   41 #elif HAVE_OPENJPEG_2_0_OPENJPEG_H 
   42 #  include <openjpeg-2.0/openjpeg.h> 
   43 #elif HAVE_OPENJPEG_1_5_OPENJPEG_H 
   44 #  include <openjpeg-1.5/openjpeg.h> 
   46 #  include <openjpeg.h> 
   49 #if HAVE_OPENJPEG_2_1_OPENJPEG_H || HAVE_OPENJPEG_2_0_OPENJPEG_H 
   50 #  define OPENJPEG_MAJOR_VERSION 2 
   51 #  define OPJ(x) OPJ_##x 
   53 #  define OPENJPEG_MAJOR_VERSION 1 
   57 #define JP2_SIG_TYPE    0x6A502020 
   58 #define JP2_SIG_VALUE   0x0D0A870A 
   62 #define RGB_PIXEL_FORMATS  AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,                 \ 
   63                            AV_PIX_FMT_RGB48, AV_PIX_FMT_RGBA64 
   65 #define GRAY_PIXEL_FORMATS AV_PIX_FMT_GRAY8, AV_PIX_FMT_YA8,                  \ 
   66                            AV_PIX_FMT_GRAY16, AV_PIX_FMT_YA16 
   68 #define YUV_PIXEL_FORMATS  AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUVA420P, \ 
   69                            AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVA422P, \ 
   70                            AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVA444P, \ 
   71                            AV_PIX_FMT_YUV420P9, AV_PIX_FMT_YUV422P9, AV_PIX_FMT_YUV444P9, \ 
   72                            AV_PIX_FMT_YUVA420P9, AV_PIX_FMT_YUVA422P9, AV_PIX_FMT_YUVA444P9, \ 
   73                            AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV444P10, \ 
   74                            AV_PIX_FMT_YUVA420P10, AV_PIX_FMT_YUVA422P10, AV_PIX_FMT_YUVA444P10, \ 
   75                            AV_PIX_FMT_YUV420P12, AV_PIX_FMT_YUV422P12, AV_PIX_FMT_YUV444P12, \ 
   76                            AV_PIX_FMT_YUV420P14, AV_PIX_FMT_YUV422P14, AV_PIX_FMT_YUV444P14, \ 
   77                            AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16, \ 
   78                            AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16 
   80 #define XYZ_PIXEL_FORMATS  AV_PIX_FMT_XYZ12 
   98 #if OPENJPEG_MAJOR_VERSION == 1 
  100 #endif // OPENJPEG_MAJOR_VERSION == 1 
  119 #if OPENJPEG_MAJOR_VERSION == 2 
  120 typedef struct BufferReader {
 
  126 static OPJ_SIZE_T stream_read(
void *out_buffer, OPJ_SIZE_T nb_bytes, 
void *
user_data)
 
  131     if (reader->pos == reader->size) {
 
  132         return (OPJ_SIZE_T)-1;
 
  134     remaining = reader->size - reader->pos;
 
  135     if (nb_bytes > remaining) {
 
  136         nb_bytes = remaining;
 
  138     memcpy(out_buffer, reader->buffer + reader->pos, nb_bytes);
 
  139     reader->pos += (int)nb_bytes;
 
  143 static OPJ_OFF_T stream_skip(OPJ_OFF_T nb_bytes, 
void *user_data)
 
  147         if (reader->pos == 0) {
 
  148             return (OPJ_SIZE_T)-1;
 
  150         if (nb_bytes + reader->pos < 0) {
 
  151             nb_bytes = -reader->pos;
 
  156         if (reader->pos == reader->size) {
 
  157             return (OPJ_SIZE_T)-1;
 
  159         remaining = reader->size - reader->pos;
 
  160         if (nb_bytes > remaining) {
 
  161             nb_bytes = remaining;
 
  164     reader->pos += (int)nb_bytes;
 
  168 static OPJ_BOOL 
stream_seek(OPJ_OFF_T nb_bytes, 
void *user_data)
 
  171     if (nb_bytes < 0 || nb_bytes > reader->size) {
 
  174     reader->pos = (int)nb_bytes;
 
  177 #endif // OPENJPEG_MAJOR_VERSION == 2 
  191                 desc->
comp[3].
depth >= image->comps[3].prec &&
 
  192                 1 == image->comps[3].dx &&
 
  193                 1 == image->comps[3].dy;
 
  196                 desc->
comp[2].
depth >= image->comps[2].prec &&
 
  201                 desc->
comp[1].
depth >= image->comps[1].prec &&
 
  206                 desc->
comp[0].
depth >= image->comps[0].prec &&
 
  207                 1 == image->comps[0].dx &&
 
  208                 1 == image->comps[0].dy;
 
  219     int possible_fmts_nb = 0;
 
  221     switch (image->color_space) {
 
  222     case OPJ(CLRSPC_SRGB):
 
  226     case OPJ(CLRSPC_GRAY):
 
  230     case OPJ(CLRSPC_SYCC):
 
  240     for (index = 0; index < possible_fmts_nb; ++
index)
 
  242             return possible_fmts[
index];
 
  251     int i, component_plane;
 
  258         if (component_plane != desc->
comp[i].
plane)
 
  266     for (y = 0; y < picture->
height; y++) {
 
  267         index   = y * picture->
width;
 
  269         for (x = 0; x < picture->
width; x++, index++)
 
  270             for (c = 0; c < image->numcomps; c++)
 
  271                 *img_ptr++ = 0x80 * image->comps[c].sgnd + image->comps[c].data[index];
 
  280     for (x = 0; x < image->numcomps; x++)
 
  283     for (y = 0; y < picture->
height; y++) {
 
  284         index   = y * picture->
width;
 
  285         img_ptr = (uint16_t *) (picture->
data[0] + y * picture->
linesize[0]);
 
  286         for (x = 0; x < picture->
width; x++, index++)
 
  287             for (c = 0; c < image->numcomps; c++)
 
  288                 *img_ptr++ = (1 << image->comps[c].prec - 1) * image->comps[
c].sgnd +
 
  289                              (unsigned)image->comps[c].data[index] << adjust[c];
 
  298     for (index = 0; index < image->numcomps; index++) {
 
  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 = 0x80 * image->comps[
index].sgnd + *comp_data;
 
  317     for (x = 0; x < image->numcomps; x++)
 
  320     for (index = 0; index < image->numcomps; index++) {
 
  321         comp_data = image->comps[
index].data;
 
  322         for (y = 0; y < image->comps[
index].h; y++) {
 
  323             img_ptr = (uint16_t *)(picture->
data[index] + y * picture->
linesize[index]);
 
  324             for (x = 0; x < image->comps[
index].w; x++) {
 
  325                 *img_ptr = (1 << image->comps[
index].prec - 1) * image->comps[index].sgnd +
 
  326                            (
unsigned)*comp_data << adjust[
index];
 
  338     opj_set_default_decoder_parameters(&ctx->
dec_params);
 
  343                                     void *
data, 
int *got_frame,
 
  347     int buf_size            = avpkt->
size;
 
  356     opj_image_t *image = 
NULL;
 
  357 #if OPENJPEG_MAJOR_VERSION == 1 
  358     opj_dinfo_t *dec = 
NULL;
 
  359     opj_cio_t *stream = 
NULL;
 
  360 #else // OPENJPEG_MAJOR_VERSION == 2 
  361     BufferReader reader = {0, avpkt->
size, avpkt->
data};
 
  362     opj_codec_t *dec = 
NULL;
 
  363     opj_stream_t *stream = 
NULL;
 
  364 #endif // OPENJPEG_MAJOR_VERSION == 1 
  387 #if OPENJPEG_MAJOR_VERSION == 1 
  392     opj_set_event_mgr((opj_common_ptr) dec, &ctx->
event_mgr, avctx);
 
  393     ctx->
dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER;
 
  395 #else // OPENJPEG_MAJOR_VERSION == 2 
  406 #endif // OPENJPEG_MAJOR_VERSION == 1 
  411 #if OPENJPEG_MAJOR_VERSION == 1 
  412     stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
 
  413 #else // OPENJPEG_MAJOR_VERSION == 2 
  414     stream = opj_stream_default_create(OPJ_STREAM_READ);
 
  415 #endif // OPENJPEG_MAJOR_VERSION == 1 
  419                "Codestream could not be opened for reading.\n");
 
  424 #if OPENJPEG_MAJOR_VERSION == 1 
  426     image = opj_decode_with_info(dec, stream, 
NULL);
 
  427     opj_cio_close(stream);
 
  430 #else // OPENJPEG_MAJOR_VERSION == 2 
  431     opj_stream_set_read_function(stream, stream_read);
 
  432     opj_stream_set_skip_function(stream, stream_skip);
 
  434 #if HAVE_OPENJPEG_2_1_OPENJPEG_H 
  435     opj_stream_set_user_data(stream, &reader, 
NULL);
 
  436 #elif HAVE_OPENJPEG_2_0_OPENJPEG_H 
  437     opj_stream_set_user_data(stream, &reader);
 
  439 #error Missing call to opj_stream_set_user_data 
  441     opj_stream_set_user_data_length(stream, avpkt->
size);
 
  443     ret = !opj_read_header(stream, dec, &image);
 
  444 #endif // OPENJPEG_MAJOR_VERSION == 1 
  452     width  = image->x1 - image->x0;
 
  453     height = image->y1 - image->y0;
 
  471     for (i = 0; i < image->numcomps; i++)
 
  478 #if OPENJPEG_MAJOR_VERSION == 1 
  479     ctx->
dec_params.cp_limit_decoding = NO_LIMITATION;
 
  483     stream = opj_cio_open((opj_common_ptr) dec, buf, buf_size);
 
  486                "Codestream could not be opened for reading.\n");
 
  490     opj_image_destroy(image);
 
  492     image = opj_decode_with_info(dec, stream, 
NULL);
 
  494 #else // OPENJPEG_MAJOR_VERSION == 2 
  495     ret = !opj_decode(dec, stream, image);
 
  496 #endif // OPENJPEG_MAJOR_VERSION == 1 
  504     for (i = 0; i < image->numcomps; i++) {
 
  505         if (!image->comps[i].data) {
 
  507                    "Image component %d contains no data.\n", i);
 
  517     switch (pixel_size) {
 
  554     opj_image_destroy(image);
 
  555 #if OPENJPEG_MAJOR_VERSION == 2 
  556     opj_stream_destroy(stream);
 
  557     opj_destroy_codec(dec);
 
  559     opj_cio_close(stream);
 
  560     opj_destroy_decompress(dec);
 
  567     const char *
version = opj_version();
 
  570     if (sscanf(version, 
"%d.%d", &major, &minor) == 2 && 1000*major + minor <= 1003)
 
  574 #define OFFSET(x) offsetof(LibOpenJPEGContext, x) 
  575 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM 
  578     { 
"lowqual", 
"Limit the number of layers used for decoding",
 
  591     .
name           = 
"libopenjpeg",
 
  600     .priv_class     = &openjpeg_class,
 
static void libopenjpeg_copy_to_packed16(AVFrame *picture, opj_image_t *image)
 
int plane
Which of the 4 planes contains the component. 
 
static int libopenjpeg_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
#define AVERROR_INVALIDDATA
Invalid data found when processing input. 
 
static enum AVPixelFormat pix_fmt
 
static int libopenjpeg_ispacked(enum AVPixelFormat pix_fmt)
 
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
 
This structure describes decoded (raw) audio or video data. 
 
ptrdiff_t const GLvoid * data
 
#define AV_LOG_WARNING
Something somehow does not look correct. 
 
#define LIBAVUTIL_VERSION_INT
 
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context. 
 
static av_cold int init(AVCodecContext *avctx)
 
static void stream_seek(VideoState *is, int64_t pos, int64_t rel, int seek_by_bytes)
 
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx. 
 
#define AV_CODEC_CAP_EXPERIMENTAL
Codec is experimental and is thus avoided in favor of non experimental encoders. 
 
static const AVClass openjpeg_class
 
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format. 
 
static enum AVPixelFormat libopenjpeg_gray_pix_fmts[]
 
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width. 
 
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
 
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed. 
 
#define XYZ_PIXEL_FORMATS
 
Multithreading support functions. 
 
static void warning_callback(const char *msg, void *data)
 
static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx)
 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
 
int lowres
low resolution decoding, 1-> 1/2 size, 2->1/4 size 
 
static void libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image)
 
#define YUV_PIXEL_FORMATS
 
static void libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image)
 
int width
width and height of the video frame 
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
 
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height. 
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
AVS_Value void * user_data
 
int capabilities
Codec capabilities. 
 
static enum AVPixelFormat libopenjpeg_all_pix_fmts[]
 
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers. 
 
const char * name
Name of the codec implementation. 
 
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading. 
 
static void libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image)
 
#define RGB_PIXEL_FORMATS
 
uint8_t nb_components
The number of components each pixel has, (1-4) 
 
#define AV_PIX_FMT_GRAY16
 
static enum AVPixelFormat libopenjpeg_yuv_pix_fmts[]
 
#define FF_ARRAY_ELEMS(a)
 
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome. 
 
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
 
Libavcodec external API header. 
 
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line. 
 
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
 
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs. 
 
main external API structure. 
 
Describe the class of an AVClass context structure. 
 
static enum AVPixelFormat libopenjpeg_guess_pix_fmt(const opj_image_t *image)
 
opj_event_mgr_t event_mgr
 
static enum AVPixelFormat libopenjpeg_rgb_pix_fmts[]
 
int shift
Number of least significant bits that must be shifted away to get the value. 
 
static av_cold void libopenjpeg_static_init(AVCodec *codec)
 
static void info_callback(const char *msg, void *data)
 
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes. 
 
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
 
common internal api header. 
 
common internal and external API header 
 
static int libopenjpeg_matches_pix_fmt(const opj_image_t *image, enum AVPixelFormat pix_fmt)
 
#define AVERROR_UNKNOWN
Unknown error, typically from an external library. 
 
static const AVOption options[]
 
static void error_callback(const char *msg, void *data)
 
opj_dparameters_t dec_params
 
AVCodec ff_libopenjpeg_decoder
 
int depth
Number of bits in the component. 
 
#define AVERROR_EXTERNAL
Generic error in an external library. 
 
AVPixelFormat
Pixel format. 
 
This structure stores compressed data. 
 
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators. 
 
int step
Number of elements between 2 horizontally consecutive pixels. 
 
#define GRAY_PIXEL_FORMATS