| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  | * @file | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | * JPEG 2000 decoder using libopenjpeg | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-07 14:37:08 +01:00
										 |  |  | #include "libavutil/imgutils.h"
 | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  | #include "libavutil/pixfmt.h"
 | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							|  |  |  | #include "libavutil/intreadwrite.h"
 | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  | #include "thread.h"
 | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | #define  OPJ_STATIC
 | 
					
						
							| 
									
										
										
										
											2009-02-10 11:29:31 +00:00
										 |  |  | #include <openjpeg.h>
 | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define JP2_SIG_TYPE    0x6A502020
 | 
					
						
							|  |  |  | #define JP2_SIG_VALUE   0x0D0A870A
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     opj_dparameters_t dec_params; | 
					
						
							|  |  |  |     AVFrame image; | 
					
						
							|  |  |  | } LibOpenJPEGContext; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  | static enum PixelFormat check_image_attributes(AVCodecContext *avctx, opj_image_t *image) | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  |     opj_image_comp_t c0 = image->comps[0]; | 
					
						
							|  |  |  |     opj_image_comp_t c1 = image->comps[1]; | 
					
						
							|  |  |  |     opj_image_comp_t c2 = image->comps[2]; | 
					
						
							|  |  |  |     int compRatio = 0; | 
					
						
							|  |  |  |     compRatio |= c0.dx << 15 | c0.dy << 12; | 
					
						
							|  |  |  |     compRatio |= c1.dx << 9  | c1.dy << 6; | 
					
						
							|  |  |  |     compRatio |= c2.dx << 3  | c2.dy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (compRatio) { | 
					
						
							|  |  |  |     case 0111111: goto libopenjpeg_yuv444_rgb; | 
					
						
							|  |  |  |     case 0112121: goto libopenjpeg_yuv422; | 
					
						
							|  |  |  |     case 0112222: goto libopenjpeg_yuv420; | 
					
						
							|  |  |  |     default: return PIX_FMT_RGB24; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | libopenjpeg_yuv420: | 
					
						
							|  |  |  |     switch (c0.prec) { | 
					
						
							|  |  |  |     case 8:  return PIX_FMT_YUV420P; | 
					
						
							|  |  |  |     case 9:  return PIX_FMT_YUV420P9; | 
					
						
							|  |  |  |     case 10: return PIX_FMT_YUV420P10; | 
					
						
							|  |  |  |     case 16: return PIX_FMT_YUV420P16; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | libopenjpeg_yuv422: | 
					
						
							|  |  |  |     switch (c0.prec) { | 
					
						
							|  |  |  |     case 8:  return PIX_FMT_YUV422P; | 
					
						
							|  |  |  |     case 9:  return PIX_FMT_YUV422P9; | 
					
						
							|  |  |  |     case 10: return PIX_FMT_YUV422P10; | 
					
						
							|  |  |  |     case 16: return PIX_FMT_YUV422P16; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | libopenjpeg_yuv444_rgb: | 
					
						
							|  |  |  |     switch (c0.prec) { | 
					
						
							|  |  |  |     case 8:  return PIX_FMT_RGB24; | 
					
						
							|  |  |  |     case 9:  return PIX_FMT_YUV444P9; | 
					
						
							|  |  |  |     case 10: return PIX_FMT_YUV444P10; | 
					
						
							|  |  |  |     case 16: return PIX_FMT_YUV444P16; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PIX_FMT_RGB24; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int libopenjpeg_ispacked(enum PixelFormat pix_fmt) { | 
					
						
							|  |  |  |     int i, component_plane; | 
					
						
							|  |  |  |     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]; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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; | 
					
						
							|  |  |  |         img_ptr = picture->data[index]; | 
					
						
							|  |  |  |         for(y = 0; y < image->comps[index].h; y++) { | 
					
						
							|  |  |  |             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; | 
					
						
							|  |  |  |         img_ptr = (uint16_t*) picture->data[index]; | 
					
						
							|  |  |  |         for(y = 0; y < image->comps[index].h; y++) { | 
					
						
							|  |  |  |             for(x = 0; x < image->comps[index].w; x++) { | 
					
						
							|  |  |  |                 *img_ptr = *comp_data; | 
					
						
							|  |  |  |                 img_ptr++; | 
					
						
							|  |  |  |                 comp_data++; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     LibOpenJPEGContext *ctx = avctx->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     opj_set_default_decoder_parameters(&ctx->dec_params); | 
					
						
							| 
									
										
										
										
											2011-05-07 21:32:52 +02:00
										 |  |  |     avcodec_get_frame_defaults(&ctx->image); | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     avctx->coded_frame = &ctx->image; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  | static av_cold int libopenjpeg_decode_init_thread_copy(AVCodecContext *avctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     LibOpenJPEGContext *ctx = avctx->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     avctx->coded_frame = &ctx->image; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | static int libopenjpeg_decode_frame(AVCodecContext *avctx, | 
					
						
							|  |  |  |                                     void *data, int *data_size, | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |                                     AVPacket *avpkt) | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-07-07 01:31:02 +02:00
										 |  |  |     uint8_t *buf = avpkt->data; | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |     int buf_size = avpkt->size; | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     LibOpenJPEGContext *ctx = avctx->priv_data; | 
					
						
							|  |  |  |     AVFrame *picture = &ctx->image, *output = data; | 
					
						
							|  |  |  |     opj_dinfo_t *dec; | 
					
						
							|  |  |  |     opj_cio_t *stream; | 
					
						
							|  |  |  |     opj_image_t *image; | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  |     int width, height, ret = -1; | 
					
						
							|  |  |  |     int pixel_size = 0; | 
					
						
							|  |  |  |     int ispacked = 0; | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *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)) { | 
					
						
							| 
									
										
										
										
											2009-11-10 14:37:42 +00:00
										 |  |  |         dec = opj_create_decompress(CODEC_JP2); | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2009-11-10 14:48:32 +00:00
										 |  |  |         // 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; | 
					
						
							| 
									
										
										
										
											2009-11-10 14:37:42 +00:00
										 |  |  |         dec = opj_create_decompress(CODEC_J2K); | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(!dec) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "Error initializing decoder.\n"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     opj_set_event_mgr((opj_common_ptr)dec, NULL, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |     ctx->dec_params.cp_limit_decoding = LIMIT_TO_MAIN_HEADER; | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     // 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; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |     // Decode the header only
 | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     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; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |     width  = image->x1 - image->x0; | 
					
						
							|  |  |  |     height = image->y1 - image->y0; | 
					
						
							| 
									
										
										
										
											2010-09-07 19:15:29 +00:00
										 |  |  |     if(av_image_check_size(width, height, 0, avctx) < 0) { | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |         av_log(avctx, AV_LOG_ERROR, "%dx%d dimension invalid.\n", width, height); | 
					
						
							|  |  |  |         goto done; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     avcodec_set_dimensions(avctx, width, height); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  |     switch (image->numcomps) { | 
					
						
							|  |  |  |     case 1:  avctx->pix_fmt = PIX_FMT_GRAY8; | 
					
						
							|  |  |  |              break; | 
					
						
							|  |  |  |     case 3:  avctx->pix_fmt = check_image_attributes(avctx, image); | 
					
						
							|  |  |  |              break; | 
					
						
							|  |  |  |     case 4:  avctx->pix_fmt = PIX_FMT_RGBA; | 
					
						
							|  |  |  |              break; | 
					
						
							|  |  |  |     default: av_log(avctx, AV_LOG_ERROR, "%d components unsupported.\n", image->numcomps); | 
					
						
							|  |  |  |              goto done; | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(picture->data[0]) | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |         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"); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |     ctx->dec_params.cp_limit_decoding = NO_LIMITATION; | 
					
						
							|  |  |  |     ctx->dec_params.cp_reduce = avctx->lowres; | 
					
						
							|  |  |  |     // 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); | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |     // Decode the codestream
 | 
					
						
							|  |  |  |     image = opj_decode_with_info(dec, stream, NULL); | 
					
						
							|  |  |  |     opj_cio_close(stream); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  |     pixel_size = av_pix_fmt_descriptors[avctx->pix_fmt].comp[0].step_minus1 + 1; | 
					
						
							|  |  |  |     ispacked = libopenjpeg_ispacked(avctx->pix_fmt); | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  |     switch (pixel_size) { | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |         if (ispacked) { | 
					
						
							|  |  |  |             libopenjpeg_copy_to_packed8(picture, image); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             libopenjpeg_copyto8(picture, image); | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-11-21 06:06:12 -08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |         libopenjpeg_copyto16(picture, image); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 3: | 
					
						
							|  |  |  |         if (ispacked) { | 
					
						
							|  |  |  |             libopenjpeg_copy_to_packed8(picture, image); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "unsupported pixel size %d\n", pixel_size); | 
					
						
							|  |  |  |         goto done; | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *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]) | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |         ff_thread_release_buffer(avctx, &ctx->image); | 
					
						
							| 
									
										
										
										
											2009-02-06 11:49:31 +00:00
										 |  |  |     return 0 ; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_libopenjpeg_decoder = { | 
					
						
							| 
									
										
										
										
											2011-09-23 21:11:15 +02:00
										 |  |  |     .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, | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS, | 
					
						
							| 
									
										
										
										
											2011-09-23 21:11:15 +02:00
										 |  |  |     .max_lowres     = 5, | 
					
						
							|  |  |  |     .long_name      = NULL_IF_CONFIG_SMALL("OpenJPEG based JPEG 2000 decoder"), | 
					
						
							| 
									
										
										
										
											2011-09-30 11:42:45 +02:00
										 |  |  |     .init_thread_copy = ONLY_IF_THREADS_ENABLED(libopenjpeg_decode_init_thread_copy) | 
					
						
							| 
									
										
										
										
											2011-09-23 21:11:15 +02:00
										 |  |  | }; |