| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * JPEG 2000 image decoder | 
					
						
							|  |  |  |  * Copyright (c) 2007 Kamil Nowosad | 
					
						
							|  |  |  |  * Copyright (c) 2013 Nicolas Bertrand <nicoinattendu@gmail.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-04-22 19:41:31 +02:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-04-22 19:41:31 +02:00
										 |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |  * 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. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-04-22 19:41:31 +02:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2013-04-22 19:41:31 +02:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file | 
					
						
							|  |  |  |  * JPEG 2000 image decoder | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-13 12:13:33 +01:00
										 |  |  | #include <inttypes.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-13 05:38:44 -07:00
										 |  |  | #include "libavutil/attributes.h"
 | 
					
						
							| 
									
										
										
										
											2013-06-03 14:37:16 +02:00
										 |  |  | #include "libavutil/avassert.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | #include "libavutil/common.h"
 | 
					
						
							|  |  |  | #include "libavutil/opt.h"
 | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  | #include "libavutil/pixdesc.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							|  |  |  | #include "bytestream.h"
 | 
					
						
							|  |  |  | #include "internal.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-22 18:49:11 +02:00
										 |  |  | #include "thread.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | #include "jpeg2000.h"
 | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  | #include "jpeg2000dsp.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define JP2_SIG_TYPE    0x6A502020
 | 
					
						
							|  |  |  | #define JP2_SIG_VALUE   0x0D0A870A
 | 
					
						
							|  |  |  | #define JP2_CODESTREAM  0x6A703263
 | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  | #define JP2_HEADER      0x6A703268
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define HAD_COC 0x01
 | 
					
						
							|  |  |  | #define HAD_QCC 0x02
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct Jpeg2000TilePart { | 
					
						
							|  |  |  |     uint8_t tile_index;                 // Tile index who refers the tile-part
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     const uint8_t *tp_end; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     GetByteContext tpg;                 // bit stream in tile-part
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } Jpeg2000TilePart; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* RMK: For JPEG2000 DCINEMA 3 tile-parts in a tile
 | 
					
						
							|  |  |  |  * one per component, so tile_part elements have a size of 3 */ | 
					
						
							|  |  |  | typedef struct Jpeg2000Tile { | 
					
						
							|  |  |  |     Jpeg2000Component   *comp; | 
					
						
							|  |  |  |     uint8_t             properties[4]; | 
					
						
							|  |  |  |     Jpeg2000CodingStyle codsty[4]; | 
					
						
							|  |  |  |     Jpeg2000QuantStyle  qntsty[4]; | 
					
						
							| 
									
										
										
										
											2015-06-10 04:50:14 +02:00
										 |  |  |     Jpeg2000TilePart    tile_part[6]; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     uint16_t tp_idx;                    // Tile-part index
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } Jpeg2000Tile; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct Jpeg2000DecoderContext { | 
					
						
							|  |  |  |     AVClass         *class; | 
					
						
							|  |  |  |     AVCodecContext  *avctx; | 
					
						
							| 
									
										
										
										
											2013-05-26 18:32:11 +02:00
										 |  |  |     GetByteContext  g; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int             width, height; | 
					
						
							|  |  |  |     int             image_offset_x, image_offset_y; | 
					
						
							|  |  |  |     int             tile_offset_x, tile_offset_y; | 
					
						
							|  |  |  |     uint8_t         cbps[4];    // bits per sample in particular components
 | 
					
						
							|  |  |  |     uint8_t         sgnd[4];    // if a component is signed
 | 
					
						
							|  |  |  |     uint8_t         properties[4]; | 
					
						
							|  |  |  |     int             cdx[4], cdy[4]; | 
					
						
							|  |  |  |     int             precision; | 
					
						
							|  |  |  |     int             ncomponents; | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |     int             colour_space; | 
					
						
							|  |  |  |     uint32_t        palette[256]; | 
					
						
							|  |  |  |     int8_t          pal8; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:57:32 +02:00
										 |  |  |     int             cdef[4]; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     int             tile_width, tile_height; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |     unsigned        numXtiles, numYtiles; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     int             maxtilelen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Jpeg2000CodingStyle codsty[4]; | 
					
						
							|  |  |  |     Jpeg2000QuantStyle  qntsty[4]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int             bit_index; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 01:47:22 +02:00
										 |  |  |     int             curtileno; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     Jpeg2000Tile    *tile; | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  |     Jpeg2000DSPContext dsp; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*options parameters*/ | 
					
						
							| 
									
										
										
										
											2013-05-31 01:47:22 +02:00
										 |  |  |     int             reduction_factor; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } Jpeg2000DecoderContext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* get_bits functions for JPEG2000 packet bitstream
 | 
					
						
							|  |  |  |  * It is a get_bit function with a bit-stuffing routine. If the value of the | 
					
						
							|  |  |  |  * byte is 0xFF, the next byte includes an extra zero bit stuffed into the MSB. | 
					
						
							|  |  |  |  * cf. ISO-15444-1:2002 / B.10.1 Bit-stuffing routine */ | 
					
						
							|  |  |  | static int get_bits(Jpeg2000DecoderContext *s, int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int res = 0; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     while (--n >= 0) { | 
					
						
							|  |  |  |         res <<= 1; | 
					
						
							|  |  |  |         if (s->bit_index == 0) { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             s->bit_index = 7 + (bytestream2_get_byte(&s->g) != 0xFFu); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         s->bit_index--; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         res |= (bytestream2_peek_byte(&s->g) >> s->bit_index) & 1; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void jpeg2000_flush(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_byte(&s->g) == 0xff) | 
					
						
							|  |  |  |         bytestream2_skip(&s->g, 1); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     s->bit_index = 8; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* decode the value stored in node */ | 
					
						
							|  |  |  | static int tag_tree_decode(Jpeg2000DecoderContext *s, Jpeg2000TgtNode *node, | 
					
						
							|  |  |  |                            int threshold) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Jpeg2000TgtNode *stack[30]; | 
					
						
							|  |  |  |     int sp = -1, curval = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     if (!node) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:30 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     while (node && !node->vis) { | 
					
						
							|  |  |  |         stack[++sp] = node; | 
					
						
							|  |  |  |         node        = node->parent; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (node) | 
					
						
							|  |  |  |         curval = node->val; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         curval = stack[sp]->val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (curval < threshold && sp >= 0) { | 
					
						
							|  |  |  |         if (curval < stack[sp]->val) | 
					
						
							|  |  |  |             curval = stack[sp]->val; | 
					
						
							|  |  |  |         while (curval < threshold) { | 
					
						
							|  |  |  |             int ret; | 
					
						
							|  |  |  |             if ((ret = get_bits(s, 1)) > 0) { | 
					
						
							|  |  |  |                 stack[sp]->vis++; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } else if (!ret) | 
					
						
							|  |  |  |                 curval++; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 return ret; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         stack[sp]->val = curval; | 
					
						
							|  |  |  |         sp--; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return curval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  | static int pix_fmt_match(enum AVPixelFormat pix_fmt, int components, | 
					
						
							|  |  |  |                          int bpc, uint32_t log2_chroma_wh, int pal8) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int match = 1; | 
					
						
							|  |  |  |     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 14:33:53 +02:00
										 |  |  |     av_assert2(desc); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |     if (desc->nb_components != components) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (components) { | 
					
						
							|  |  |  |     case 4: | 
					
						
							|  |  |  |         match = match && desc->comp[3].depth_minus1 + 1 >= bpc && | 
					
						
							|  |  |  |                          (log2_chroma_wh >> 14 & 3) == 0 && | 
					
						
							|  |  |  |                          (log2_chroma_wh >> 12 & 3) == 0; | 
					
						
							|  |  |  |     case 3: | 
					
						
							|  |  |  |         match = match && desc->comp[2].depth_minus1 + 1 >= bpc && | 
					
						
							|  |  |  |                          (log2_chroma_wh >> 10 & 3) == desc->log2_chroma_w && | 
					
						
							|  |  |  |                          (log2_chroma_wh >>  8 & 3) == desc->log2_chroma_h; | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |         match = match && desc->comp[1].depth_minus1 + 1 >= bpc && | 
					
						
							|  |  |  |                          (log2_chroma_wh >>  6 & 3) == desc->log2_chroma_w && | 
					
						
							|  |  |  |                          (log2_chroma_wh >>  4 & 3) == desc->log2_chroma_h; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |         match = match && desc->comp[0].depth_minus1 + 1 >= bpc && | 
					
						
							|  |  |  |                          (log2_chroma_wh >>  2 & 3) == 0 && | 
					
						
							|  |  |  |                          (log2_chroma_wh       & 3) == 0 && | 
					
						
							|  |  |  |                          (desc->flags & AV_PIX_FMT_FLAG_PAL) == pal8 * AV_PIX_FMT_FLAG_PAL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return match; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // pix_fmts with lower bpp have to be listed before
 | 
					
						
							|  |  |  | // similar pix_fmts with higher bpp.
 | 
					
						
							|  |  |  | #define RGB_PIXEL_FORMATS   AV_PIX_FMT_PAL8,AV_PIX_FMT_RGB24,AV_PIX_FMT_RGBA,AV_PIX_FMT_RGB48,AV_PIX_FMT_RGBA64
 | 
					
						
							| 
									
										
										
										
											2015-02-01 16:18:39 +01:00
										 |  |  | #define GRAY_PIXEL_FORMATS  AV_PIX_FMT_GRAY8,AV_PIX_FMT_GRAY8A,AV_PIX_FMT_GRAY16,AV_PIX_FMT_YA16
 | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  | #define YUV_PIXEL_FORMATS   AV_PIX_FMT_YUV410P,AV_PIX_FMT_YUV411P,AV_PIX_FMT_YUVA420P, \
 | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUV420P,AV_PIX_FMT_YUV422P,AV_PIX_FMT_YUVA422P, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUV440P,AV_PIX_FMT_YUV444P,AV_PIX_FMT_YUVA444P, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUV420P9,AV_PIX_FMT_YUV422P9,AV_PIX_FMT_YUV444P9, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUVA420P9,AV_PIX_FMT_YUVA422P9,AV_PIX_FMT_YUVA444P9, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUV420P10,AV_PIX_FMT_YUV422P10,AV_PIX_FMT_YUV444P10, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUVA420P10,AV_PIX_FMT_YUVA422P10,AV_PIX_FMT_YUVA444P10, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUV420P12,AV_PIX_FMT_YUV422P12,AV_PIX_FMT_YUV444P12, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUV420P14,AV_PIX_FMT_YUV422P14,AV_PIX_FMT_YUV444P14, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUV420P16,AV_PIX_FMT_YUV422P16,AV_PIX_FMT_YUV444P16, \ | 
					
						
							|  |  |  |                             AV_PIX_FMT_YUVA420P16,AV_PIX_FMT_YUVA422P16,AV_PIX_FMT_YUVA444P16 | 
					
						
							|  |  |  | #define XYZ_PIXEL_FORMATS   AV_PIX_FMT_XYZ12
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const enum AVPixelFormat rgb_pix_fmts[]  = {RGB_PIXEL_FORMATS}; | 
					
						
							|  |  |  | static const enum AVPixelFormat gray_pix_fmts[] = {GRAY_PIXEL_FORMATS}; | 
					
						
							|  |  |  | static const enum AVPixelFormat yuv_pix_fmts[]  = {YUV_PIXEL_FORMATS}; | 
					
						
							| 
									
										
										
										
											2015-06-12 16:28:53 +02:00
										 |  |  | static const enum AVPixelFormat xyz_pix_fmts[]  = {XYZ_PIXEL_FORMATS, | 
					
						
							|  |  |  |                                                    YUV_PIXEL_FORMATS}; | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  | static const enum AVPixelFormat all_pix_fmts[]  = {RGB_PIXEL_FORMATS, | 
					
						
							|  |  |  |                                                    GRAY_PIXEL_FORMATS, | 
					
						
							|  |  |  |                                                    YUV_PIXEL_FORMATS, | 
					
						
							|  |  |  |                                                    XYZ_PIXEL_FORMATS}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | /* marker segments */ | 
					
						
							|  |  |  | /* get sizes and offsets of image, tiles; number of components */ | 
					
						
							|  |  |  | static int get_siz(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2013-06-14 00:35:52 +02:00
										 |  |  |     int ncomponents; | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |     uint32_t log2_chroma_wh = 0; | 
					
						
							|  |  |  |     const enum AVPixelFormat *possible_fmts = NULL; | 
					
						
							|  |  |  |     int possible_fmts_nb = 0; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 36) | 
					
						
							| 
									
										
										
										
											2013-07-03 12:16:24 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     s->avctx->profile = bytestream2_get_be16u(&s->g); // Rsiz
 | 
					
						
							|  |  |  |     s->width          = bytestream2_get_be32u(&s->g); // Width
 | 
					
						
							|  |  |  |     s->height         = bytestream2_get_be32u(&s->g); // Height
 | 
					
						
							|  |  |  |     s->image_offset_x = bytestream2_get_be32u(&s->g); // X0Siz
 | 
					
						
							|  |  |  |     s->image_offset_y = bytestream2_get_be32u(&s->g); // Y0Siz
 | 
					
						
							|  |  |  |     s->tile_width     = bytestream2_get_be32u(&s->g); // XTSiz
 | 
					
						
							|  |  |  |     s->tile_height    = bytestream2_get_be32u(&s->g); // YTSiz
 | 
					
						
							|  |  |  |     s->tile_offset_x  = bytestream2_get_be32u(&s->g); // XT0Siz
 | 
					
						
							|  |  |  |     s->tile_offset_y  = bytestream2_get_be32u(&s->g); // YT0Siz
 | 
					
						
							| 
									
										
										
										
											2013-06-14 00:35:52 +02:00
										 |  |  |     ncomponents       = bytestream2_get_be16u(&s->g); // CSiz
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-26 02:19:13 +02:00
										 |  |  |     if (s->image_offset_x || s->image_offset_y) { | 
					
						
							|  |  |  |         avpriv_request_sample(s->avctx, "Support for image offsets"); | 
					
						
							|  |  |  |         return AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |     if (ncomponents <= 0) { | 
					
						
							|  |  |  |         av_log(s->avctx, AV_LOG_ERROR, "Invalid number of components: %d\n", | 
					
						
							|  |  |  |                s->ncomponents); | 
					
						
							| 
									
										
										
										
											2013-07-03 12:16:24 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-05-21 21:36:32 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-03 13:57:59 +02:00
										 |  |  |     if (ncomponents > 4) { | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |         avpriv_request_sample(s->avctx, "Support for %d components", | 
					
						
							| 
									
										
										
										
											2015-06-10 04:50:40 +02:00
										 |  |  |                               ncomponents); | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |         return AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 00:35:52 +02:00
										 |  |  |     s->ncomponents = ncomponents; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-03 13:57:59 +02:00
										 |  |  |     if (s->tile_width <= 0 || s->tile_height <= 0) { | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, "Invalid tile dimension %dx%d.\n", | 
					
						
							|  |  |  |                s->tile_width, s->tile_height); | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-05-21 21:36:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 3 * s->ncomponents) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < s->ncomponents; i++) { // Ssiz_i XRsiz_i, YRsiz_i
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:02 +02:00
										 |  |  |         uint8_t x    = bytestream2_get_byteu(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         s->cbps[i]   = (x & 0x7f) + 1; | 
					
						
							|  |  |  |         s->precision = FFMAX(s->cbps[i], s->precision); | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         s->sgnd[i]   = !!(x & 0x80); | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         s->cdx[i]    = bytestream2_get_byteu(&s->g); | 
					
						
							|  |  |  |         s->cdy[i]    = bytestream2_get_byteu(&s->g); | 
					
						
							| 
									
										
										
										
											2013-08-21 04:40:50 +02:00
										 |  |  |         if (   !s->cdx[i] || s->cdx[i] == 3 || s->cdx[i] > 4 | 
					
						
							|  |  |  |             || !s->cdy[i] || s->cdy[i] == 3 || s->cdy[i] > 4) { | 
					
						
							| 
									
										
										
										
											2013-09-15 21:32:42 +02:00
										 |  |  |             av_log(s->avctx, AV_LOG_ERROR, "Invalid sample separation %d/%d\n", s->cdx[i], s->cdy[i]); | 
					
						
							| 
									
										
										
										
											2013-08-07 15:02:38 +02:00
										 |  |  |             return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |         log2_chroma_wh |= s->cdy[i] >> 1 << i * 4 | s->cdx[i] >> 1 << i * 4 + 2; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->numXtiles = ff_jpeg2000_ceildiv(s->width  - s->tile_offset_x, s->tile_width); | 
					
						
							|  |  |  |     s->numYtiles = ff_jpeg2000_ceildiv(s->height - s->tile_offset_y, s->tile_height); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-03 13:57:59 +02:00
										 |  |  |     if (s->numXtiles * (uint64_t)s->numYtiles > INT_MAX/sizeof(*s->tile)) { | 
					
						
							|  |  |  |         s->numXtiles = s->numYtiles = 0; | 
					
						
							| 
									
										
										
										
											2013-05-22 03:12:44 +02:00
										 |  |  |         return AVERROR(EINVAL); | 
					
						
							| 
									
										
										
										
											2013-07-03 13:57:59 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-05-22 03:12:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |     s->tile = av_mallocz_array(s->numXtiles * s->numYtiles, sizeof(*s->tile)); | 
					
						
							|  |  |  |     if (!s->tile) { | 
					
						
							|  |  |  |         s->numXtiles = s->numYtiles = 0; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         return AVERROR(ENOMEM); | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:04 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < s->numXtiles * s->numYtiles; i++) { | 
					
						
							|  |  |  |         Jpeg2000Tile *tile = s->tile + i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         tile->comp = av_mallocz(s->ncomponents * sizeof(*tile->comp)); | 
					
						
							|  |  |  |         if (!tile->comp) | 
					
						
							|  |  |  |             return AVERROR(ENOMEM); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* compute image size with reduction factor */ | 
					
						
							|  |  |  |     s->avctx->width  = ff_jpeg2000_ceildivpow2(s->width  - s->image_offset_x, | 
					
						
							|  |  |  |                                                s->reduction_factor); | 
					
						
							|  |  |  |     s->avctx->height = ff_jpeg2000_ceildivpow2(s->height - s->image_offset_y, | 
					
						
							|  |  |  |                                                s->reduction_factor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |     if (s->avctx->profile == FF_PROFILE_JPEG2000_DCINEMA_2K || | 
					
						
							|  |  |  |         s->avctx->profile == FF_PROFILE_JPEG2000_DCINEMA_4K) { | 
					
						
							|  |  |  |         possible_fmts = xyz_pix_fmts; | 
					
						
							|  |  |  |         possible_fmts_nb = FF_ARRAY_ELEMS(xyz_pix_fmts); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         switch (s->colour_space) { | 
					
						
							|  |  |  |         case 16: | 
					
						
							|  |  |  |             possible_fmts = rgb_pix_fmts; | 
					
						
							|  |  |  |             possible_fmts_nb = FF_ARRAY_ELEMS(rgb_pix_fmts); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 17: | 
					
						
							|  |  |  |             possible_fmts = gray_pix_fmts; | 
					
						
							|  |  |  |             possible_fmts_nb = FF_ARRAY_ELEMS(gray_pix_fmts); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 18: | 
					
						
							|  |  |  |             possible_fmts = yuv_pix_fmts; | 
					
						
							|  |  |  |             possible_fmts_nb = FF_ARRAY_ELEMS(yuv_pix_fmts); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2013-05-30 16:45:30 +02:00
										 |  |  |         default: | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |             possible_fmts = all_pix_fmts; | 
					
						
							|  |  |  |             possible_fmts_nb = FF_ARRAY_ELEMS(all_pix_fmts); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     for (i = 0; i < possible_fmts_nb; ++i) { | 
					
						
							|  |  |  |         if (pix_fmt_match(possible_fmts[i], ncomponents, s->precision, log2_chroma_wh, s->pal8)) { | 
					
						
							|  |  |  |             s->avctx->pix_fmt = possible_fmts[i]; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-01-20 18:40:37 +01:00
										 |  |  |     if (i == possible_fmts_nb) { | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							|  |  |  |                "Unknown pix_fmt, profile: %d, colour_space: %d, " | 
					
						
							|  |  |  |                "components: %d, precision: %d, " | 
					
						
							|  |  |  |                "cdx[1]: %d, cdy[1]: %d, cdx[2]: %d, cdy[2]: %d\n", | 
					
						
							|  |  |  |                s->avctx->profile, s->colour_space, ncomponents, s->precision, | 
					
						
							|  |  |  |                ncomponents > 2 ? s->cdx[1] : 0, | 
					
						
							|  |  |  |                ncomponents > 2 ? s->cdy[1] : 0, | 
					
						
							|  |  |  |                ncomponents > 2 ? s->cdx[2] : 0, | 
					
						
							|  |  |  |                ncomponents > 2 ? s->cdy[2] : 0); | 
					
						
							| 
									
										
										
										
											2014-01-20 18:40:37 +01:00
										 |  |  |         return AVERROR_PATCHWELCOME; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-09-12 09:23:32 +02:00
										 |  |  |     s->avctx->bits_per_raw_sample = s->precision; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* get common part for COD and COC segments */ | 
					
						
							|  |  |  | static int get_cox(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint8_t byte; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 5) | 
					
						
							| 
									
										
										
										
											2013-07-03 12:16:24 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:00:58 +02:00
										 |  |  |     /*  nreslevels = number of resolution levels
 | 
					
						
							|  |  |  |                    = number of decomposition level +1 */ | 
					
						
							| 
									
										
										
										
											2013-07-03 11:20:39 +02:00
										 |  |  |     c->nreslevels = bytestream2_get_byteu(&s->g) + 1; | 
					
						
							| 
									
										
										
										
											2013-05-26 21:50:17 +02:00
										 |  |  |     if (c->nreslevels >= JPEG2000_MAX_RESLEVELS) { | 
					
						
							|  |  |  |         av_log(s->avctx, AV_LOG_ERROR, "nreslevels %d is invalid\n", c->nreslevels); | 
					
						
							|  |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 13:15:47 +02:00
										 |  |  |     if (c->nreslevels <= s->reduction_factor) { | 
					
						
							|  |  |  |         /* we are forced to update reduction_factor as its requested value is
 | 
					
						
							|  |  |  |            not compatible with this bitstream, and as we might have used it | 
					
						
							|  |  |  |            already in setup earlier we have to fail this frame until | 
					
						
							|  |  |  |            reinitialization is implemented */ | 
					
						
							|  |  |  |         av_log(s->avctx, AV_LOG_ERROR, "reduction_factor too large for this bitstream, max is %d\n", c->nreslevels - 1); | 
					
						
							|  |  |  |         s->reduction_factor = c->nreslevels - 1; | 
					
						
							|  |  |  |         return AVERROR(EINVAL); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     /* compute number of resolution levels to decode */ | 
					
						
							| 
									
										
										
										
											2013-10-15 13:15:47 +02:00
										 |  |  |     c->nreslevels2decode = c->nreslevels - s->reduction_factor; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-26 20:05:30 +02:00
										 |  |  |     c->log2_cblk_width  = (bytestream2_get_byteu(&s->g) & 15) + 2; // cblk width
 | 
					
						
							|  |  |  |     c->log2_cblk_height = (bytestream2_get_byteu(&s->g) & 15) + 2; // cblk height
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (c->log2_cblk_width > 10 || c->log2_cblk_height > 10 || | 
					
						
							| 
									
										
										
										
											2013-07-01 10:00:59 +02:00
										 |  |  |         c->log2_cblk_width + c->log2_cblk_height > 12) { | 
					
						
							| 
									
										
										
										
											2013-05-26 20:05:30 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, "cblk size invalid\n"); | 
					
						
							|  |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-24 03:19:40 +02:00
										 |  |  |     if (c->log2_cblk_width > 6 || c->log2_cblk_height > 6) { | 
					
						
							|  |  |  |         avpriv_request_sample(s->avctx, "cblk size > 64"); | 
					
						
							|  |  |  |         return AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     c->cblk_style = bytestream2_get_byteu(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     if (c->cblk_style != 0) { // cblk style
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_WARNING, "extra cblk styles %X\n", c->cblk_style); | 
					
						
							| 
									
										
										
										
											2015-06-11 22:33:53 +02:00
										 |  |  |         if (c->cblk_style & JPEG2000_CBLK_BYPASS) | 
					
						
							|  |  |  |             av_log(s->avctx, AV_LOG_WARNING, "Selective arithmetic coding bypass\n"); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     c->transform = bytestream2_get_byteu(&s->g); // DWT transformation type
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     /* set integer 9/7 DWT in case of BITEXACT flag */ | 
					
						
							|  |  |  |     if ((s->avctx->flags & CODEC_FLAG_BITEXACT) && (c->transform == FF_DWT97)) | 
					
						
							|  |  |  |         c->transform = FF_DWT97_INT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (c->csty & JPEG2000_CSTY_PREC) { | 
					
						
							|  |  |  |         int i; | 
					
						
							|  |  |  |         for (i = 0; i < c->nreslevels; i++) { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             byte = bytestream2_get_byte(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             c->log2_prec_widths[i]  =  byte       & 0x0F;    // precinct PPx
 | 
					
						
							|  |  |  |             c->log2_prec_heights[i] = (byte >> 4) & 0x0F;    // precinct PPy
 | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-05-26 21:50:17 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         memset(c->log2_prec_widths , 15, sizeof(c->log2_prec_widths )); | 
					
						
							|  |  |  |         memset(c->log2_prec_heights, 15, sizeof(c->log2_prec_heights)); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* get coding parameters for a particular tile or whole image*/ | 
					
						
							|  |  |  | static int get_cod(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c, | 
					
						
							|  |  |  |                    uint8_t *properties) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Jpeg2000CodingStyle tmp; | 
					
						
							| 
									
										
										
										
											2013-06-05 17:23:34 +02:00
										 |  |  |     int compno, ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 5) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     tmp.csty = bytestream2_get_byteu(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // get progression order
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     tmp.prog_order = bytestream2_get_byteu(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:02 +02:00
										 |  |  |     tmp.nlayers    = bytestream2_get_be16u(&s->g); | 
					
						
							|  |  |  |     tmp.mct        = bytestream2_get_byteu(&s->g); // multiple component transformation
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-06 16:06:13 +02:00
										 |  |  |     if (tmp.mct && s->ncomponents < 3) { | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:15 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							| 
									
										
										
										
											2014-03-13 12:13:33 +01:00
										 |  |  |                "MCT %"PRIu8" with too few components (%d)\n", | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:15 +02:00
										 |  |  |                tmp.mct, s->ncomponents); | 
					
						
							| 
									
										
										
										
											2013-06-06 16:06:13 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-05 17:23:34 +02:00
										 |  |  |     if ((ret = get_cox(s, &tmp)) < 0) | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     for (compno = 0; compno < s->ncomponents; compno++) | 
					
						
							|  |  |  |         if (!(properties[compno] & HAD_COC)) | 
					
						
							|  |  |  |             memcpy(c + compno, &tmp, sizeof(tmp)); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get coding parameters for a component in the whole image or a
 | 
					
						
							|  |  |  |  * particular tile. */ | 
					
						
							|  |  |  | static int get_coc(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *c, | 
					
						
							|  |  |  |                    uint8_t *properties) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-06-05 17:23:34 +02:00
										 |  |  |     int compno, ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 2) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     compno = bytestream2_get_byteu(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 01:54:30 +02:00
										 |  |  |     if (compno >= s->ncomponents) { | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:07 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							|  |  |  |                "Invalid compno %d. There are %d components in the image.\n", | 
					
						
							|  |  |  |                compno, s->ncomponents); | 
					
						
							| 
									
										
										
										
											2013-06-14 01:54:30 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     c      += compno; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     c->csty = bytestream2_get_byteu(&s->g); | 
					
						
							| 
									
										
										
										
											2013-06-05 17:23:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((ret = get_cox(s, c)) < 0) | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     properties[compno] |= HAD_COC; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get common part for QCD and QCC segments. */ | 
					
						
							|  |  |  | static int get_qcx(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i, x; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 1) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     x = bytestream2_get_byteu(&s->g); // Sqcd
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     q->nguardbits = x >> 5; | 
					
						
							|  |  |  |     q->quantsty   = x & 0x1f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (q->quantsty == JPEG2000_QSTY_NONE) { | 
					
						
							|  |  |  |         n -= 3; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:02 +02:00
										 |  |  |         if (bytestream2_get_bytes_left(&s->g) < n || | 
					
						
							| 
									
										
										
										
											2013-07-03 12:54:01 +02:00
										 |  |  |             n > JPEG2000_MAX_DECLEVELS*3) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |             return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         for (i = 0; i < n; i++) | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             q->expn[i] = bytestream2_get_byteu(&s->g) >> 3; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } else if (q->quantsty == JPEG2000_QSTY_SI) { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         if (bytestream2_get_bytes_left(&s->g) < 2) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |             return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         x          = bytestream2_get_be16u(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         q->expn[0] = x >> 11; | 
					
						
							|  |  |  |         q->mant[0] = x & 0x7ff; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:00 +02:00
										 |  |  |         for (i = 1; i < JPEG2000_MAX_DECLEVELS * 3; i++) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             int curexpn = FFMAX(0, q->expn[0] - (i - 1) / 3); | 
					
						
							|  |  |  |             q->expn[i] = curexpn; | 
					
						
							|  |  |  |             q->mant[i] = q->mant[0]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         n = (n - 3) >> 1; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:02 +02:00
										 |  |  |         if (bytestream2_get_bytes_left(&s->g) < 2 * n || | 
					
						
							| 
									
										
										
										
											2013-07-03 12:54:01 +02:00
										 |  |  |             n > JPEG2000_MAX_DECLEVELS*3) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |             return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         for (i = 0; i < n; i++) { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             x          = bytestream2_get_be16u(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             q->expn[i] = x >> 11; | 
					
						
							|  |  |  |             q->mant[i] = x & 0x7ff; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get quantization parameters for a particular tile or a whole image. */ | 
					
						
							|  |  |  | static int get_qcd(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q, | 
					
						
							|  |  |  |                    uint8_t *properties) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Jpeg2000QuantStyle tmp; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |     int compno, ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-28 21:47:27 +01:00
										 |  |  |     memset(&tmp, 0, sizeof(tmp)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |     if ((ret = get_qcx(s, n, &tmp)) < 0) | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     for (compno = 0; compno < s->ncomponents; compno++) | 
					
						
							|  |  |  |         if (!(properties[compno] & HAD_QCC)) | 
					
						
							|  |  |  |             memcpy(q + compno, &tmp, sizeof(tmp)); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get quantization parameters for a component in the whole image
 | 
					
						
							|  |  |  |  * on in a particular tile. */ | 
					
						
							|  |  |  | static int get_qcc(Jpeg2000DecoderContext *s, int n, Jpeg2000QuantStyle *q, | 
					
						
							|  |  |  |                    uint8_t *properties) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int compno; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 1) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:07 +02:00
										 |  |  |     compno = bytestream2_get_byteu(&s->g); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-06 02:19:24 +02:00
										 |  |  |     if (compno >= s->ncomponents) { | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:07 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							|  |  |  |                "Invalid compno %d. There are %d components in the image.\n", | 
					
						
							|  |  |  |                compno, s->ncomponents); | 
					
						
							| 
									
										
										
										
											2013-06-06 02:19:24 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     properties[compno] |= HAD_QCC; | 
					
						
							|  |  |  |     return get_qcx(s, n - 1, q + compno); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get start of tile segment. */ | 
					
						
							| 
									
										
										
										
											2013-05-22 02:13:22 +02:00
										 |  |  | static int get_sot(Jpeg2000DecoderContext *s, int n) | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     Jpeg2000TilePart *tp; | 
					
						
							|  |  |  |     uint16_t Isot; | 
					
						
							|  |  |  |     uint32_t Psot; | 
					
						
							|  |  |  |     uint8_t TPsot; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 8) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-03 13:20:57 +02:00
										 |  |  |     s->curtileno = 0; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:02 +02:00
										 |  |  |     Isot = bytestream2_get_be16u(&s->g);        // Isot
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:03 +02:00
										 |  |  |     if (Isot >= s->numXtiles * s->numYtiles) | 
					
						
							| 
									
										
										
										
											2013-07-03 12:16:24 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-03 13:20:57 +02:00
										 |  |  |     s->curtileno = Isot; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     Psot  = bytestream2_get_be32u(&s->g);       // Psot
 | 
					
						
							|  |  |  |     TPsot = bytestream2_get_byteu(&s->g);       // TPsot
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Read TNSot but not used */ | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     bytestream2_get_byteu(&s->g);               // TNsot
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 14:43:03 +02:00
										 |  |  |     if (!Psot) | 
					
						
							|  |  |  |         Psot = bytestream2_get_bytes_left(&s->g) + n + 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 19:16:47 +02:00
										 |  |  |     if (Psot > bytestream2_get_bytes_left(&s->g) + n + 2) { | 
					
						
							| 
									
										
										
										
											2014-03-13 12:13:33 +01:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, "Psot %"PRIu32" too big\n", Psot); | 
					
						
							| 
									
										
										
										
											2013-06-14 19:16:47 +02:00
										 |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (TPsot >= FF_ARRAY_ELEMS(s->tile[Isot].tile_part)) { | 
					
						
							| 
									
										
										
										
											2014-03-13 12:13:33 +01:00
										 |  |  |         avpriv_request_sample(s->avctx, "Support for %"PRIu8" components", TPsot); | 
					
						
							| 
									
										
										
										
											2013-05-22 02:31:03 +02:00
										 |  |  |         return AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:29 +02:00
										 |  |  |     s->tile[Isot].tp_idx = TPsot; | 
					
						
							|  |  |  |     tp             = s->tile[Isot].tile_part + TPsot; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     tp->tile_index = Isot; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     tp->tp_end     = s->g.buffer + Psot - n - 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TPsot) { | 
					
						
							|  |  |  |         Jpeg2000Tile *tile = s->tile + s->curtileno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         /* copy defaults */ | 
					
						
							|  |  |  |         memcpy(tile->codsty, s->codsty, s->ncomponents * sizeof(Jpeg2000CodingStyle)); | 
					
						
							|  |  |  |         memcpy(tile->qntsty, s->qntsty, s->ncomponents * sizeof(Jpeg2000QuantStyle)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Tile-part lengths: see ISO 15444-1:2002, section A.7.1
 | 
					
						
							|  |  |  |  * Used to know the number of tile parts and lengths. | 
					
						
							|  |  |  |  * There may be multiple TLMs in the header. | 
					
						
							|  |  |  |  * TODO: The function is not used for tile-parts management, nor anywhere else. | 
					
						
							|  |  |  |  * It can be useful to allocate memory for tile parts, before managing the SOT | 
					
						
							|  |  |  |  * markers. Parsing the TLM header is needed to increment the input header | 
					
						
							|  |  |  |  * buffer. | 
					
						
							|  |  |  |  * This marker is mandatory for DCI. */ | 
					
						
							|  |  |  | static uint8_t get_tlm(Jpeg2000DecoderContext *s, int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint8_t Stlm, ST, SP, tile_tlm, i; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     bytestream2_get_byte(&s->g);               /* Ztlm: skipped */ | 
					
						
							|  |  |  |     Stlm = bytestream2_get_byte(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // too complex ? ST = ((Stlm >> 4) & 0x01) + ((Stlm >> 4) & 0x02);
 | 
					
						
							|  |  |  |     ST = (Stlm >> 4) & 0x03; | 
					
						
							|  |  |  |     // TODO: Manage case of ST = 0b11 --> raise error
 | 
					
						
							|  |  |  |     SP       = (Stlm >> 6) & 0x01; | 
					
						
							|  |  |  |     tile_tlm = (n - 4) / ((SP + 1) * 2 + ST); | 
					
						
							|  |  |  |     for (i = 0; i < tile_tlm; i++) { | 
					
						
							|  |  |  |         switch (ST) { | 
					
						
							|  |  |  |         case 0: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 1: | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             bytestream2_get_byte(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             bytestream2_get_be16(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 3: | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             bytestream2_get_be32(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (SP == 0) { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             bytestream2_get_be16(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             bytestream2_get_be32(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 15:16:46 +02:00
										 |  |  | static uint8_t get_plt(Jpeg2000DecoderContext *s, int n) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 16:48:57 +02:00
										 |  |  |     av_log(s->avctx, AV_LOG_DEBUG, | 
					
						
							| 
									
										
										
										
											2015-06-09 15:16:46 +02:00
										 |  |  |             "PLT marker at pos 0x%X\n", bytestream2_tell(&s->g) - 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*Zplt =*/ bytestream2_get_byte(&s->g); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < n - 3; i++) { | 
					
						
							|  |  |  |         bytestream2_get_byte(&s->g); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | static int init_tile(Jpeg2000DecoderContext *s, int tileno) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int compno; | 
					
						
							|  |  |  |     int tilex = tileno % s->numXtiles; | 
					
						
							|  |  |  |     int tiley = tileno / s->numXtiles; | 
					
						
							|  |  |  |     Jpeg2000Tile *tile = s->tile + tileno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!tile->comp) | 
					
						
							|  |  |  |         return AVERROR(ENOMEM); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							|  |  |  |         Jpeg2000Component *comp = tile->comp + compno; | 
					
						
							| 
									
										
										
										
											2013-05-30 19:46:39 +02:00
										 |  |  |         Jpeg2000CodingStyle *codsty = tile->codsty + compno; | 
					
						
							|  |  |  |         Jpeg2000QuantStyle  *qntsty = tile->qntsty + compno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         int ret; // global bandno
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         comp->coord_o[0][0] = FFMAX(tilex       * s->tile_width  + s->tile_offset_x, s->image_offset_x); | 
					
						
							|  |  |  |         comp->coord_o[0][1] = FFMIN((tilex + 1) * s->tile_width  + s->tile_offset_x, s->width); | 
					
						
							|  |  |  |         comp->coord_o[1][0] = FFMAX(tiley       * s->tile_height + s->tile_offset_y, s->image_offset_y); | 
					
						
							|  |  |  |         comp->coord_o[1][1] = FFMIN((tiley + 1) * s->tile_height + s->tile_offset_y, s->height); | 
					
						
							| 
									
										
										
										
											2015-06-09 00:27:15 +02:00
										 |  |  |         if (compno) { | 
					
						
							|  |  |  |             comp->coord_o[0][0] /= s->cdx[compno]; | 
					
						
							|  |  |  |             comp->coord_o[0][1] /= s->cdx[compno]; | 
					
						
							|  |  |  |             comp->coord_o[1][0] /= s->cdy[compno]; | 
					
						
							|  |  |  |             comp->coord_o[1][1] /= s->cdy[compno]; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-27 22:55:14 +02:00
										 |  |  |         comp->coord[0][0] = ff_jpeg2000_ceildivpow2(comp->coord_o[0][0], s->reduction_factor); | 
					
						
							|  |  |  |         comp->coord[0][1] = ff_jpeg2000_ceildivpow2(comp->coord_o[0][1], s->reduction_factor); | 
					
						
							|  |  |  |         comp->coord[1][0] = ff_jpeg2000_ceildivpow2(comp->coord_o[1][0], s->reduction_factor); | 
					
						
							|  |  |  |         comp->coord[1][1] = ff_jpeg2000_ceildivpow2(comp->coord_o[1][1], s->reduction_factor); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (ret = ff_jpeg2000_init_component(comp, codsty, qntsty, | 
					
						
							|  |  |  |                                              s->cbps[compno], s->cdx[compno], | 
					
						
							|  |  |  |                                              s->cdy[compno], s->avctx)) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Read the number of coding passes. */ | 
					
						
							|  |  |  | static int getnpasses(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int num; | 
					
						
							|  |  |  |     if (!get_bits(s, 1)) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     if (!get_bits(s, 1)) | 
					
						
							|  |  |  |         return 2; | 
					
						
							|  |  |  |     if ((num = get_bits(s, 2)) != 3) | 
					
						
							|  |  |  |         return num < 0 ? num : 3 + num; | 
					
						
							|  |  |  |     if ((num = get_bits(s, 5)) != 31) | 
					
						
							|  |  |  |         return num < 0 ? num : 6 + num; | 
					
						
							|  |  |  |     num = get_bits(s, 7); | 
					
						
							|  |  |  |     return num < 0 ? num : 37 + num; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int getlblockinc(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int res = 0, ret; | 
					
						
							|  |  |  |     while (ret = get_bits(s, 1)) { | 
					
						
							|  |  |  |         if (ret < 0) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |         res++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 04:35:18 +02:00
										 |  |  | static int jpeg2000_decode_packet(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile, int *tp_index, | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                                   Jpeg2000CodingStyle *codsty, | 
					
						
							|  |  |  |                                   Jpeg2000ResLevel *rlevel, int precno, | 
					
						
							|  |  |  |                                   int layno, uint8_t *expn, int numgbits) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int bandno, cblkno, ret, nb_code_blocks; | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |     int cwsno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 04:35:18 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) == 0 && s->bit_index == 8) { | 
					
						
							|  |  |  |         if (*tp_index < FF_ARRAY_ELEMS(tile->tile_part) - 1) { | 
					
						
							|  |  |  |             s->g = tile->tile_part[++(*tp_index)].tpg; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     if (!(ret = get_bits(s, 1))) { | 
					
						
							|  |  |  |         jpeg2000_flush(s); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } else if (ret < 0) | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (bandno = 0; bandno < rlevel->nbands; bandno++) { | 
					
						
							|  |  |  |         Jpeg2000Band *band = rlevel->band + bandno; | 
					
						
							|  |  |  |         Jpeg2000Prec *prec = band->prec + precno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (band->coord[0][0] == band->coord[0][1] || | 
					
						
							|  |  |  |             band->coord[1][0] == band->coord[1][1]) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         nb_code_blocks =  prec->nb_codeblocks_height * | 
					
						
							|  |  |  |                           prec->nb_codeblocks_width; | 
					
						
							|  |  |  |         for (cblkno = 0; cblkno < nb_code_blocks; cblkno++) { | 
					
						
							|  |  |  |             Jpeg2000Cblk *cblk = prec->cblk + cblkno; | 
					
						
							|  |  |  |             int incl, newpasses, llen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (cblk->npasses) | 
					
						
							|  |  |  |                 incl = get_bits(s, 1); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 incl = tag_tree_decode(s, prec->cblkincl + cblkno, layno + 1) == layno; | 
					
						
							|  |  |  |             if (!incl) | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             else if (incl < 0) | 
					
						
							|  |  |  |                 return incl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-16 15:27:39 +02:00
										 |  |  |             if (!cblk->npasses) { | 
					
						
							|  |  |  |                 int v = expn[bandno] + numgbits - 1 - | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:06 +02:00
										 |  |  |                         tag_tree_decode(s, prec->zerobits + cblkno, 100); | 
					
						
							| 
									
										
										
										
											2013-06-16 15:27:39 +02:00
										 |  |  |                 if (v < 0) { | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:06 +02:00
										 |  |  |                     av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							|  |  |  |                            "nonzerobits %d invalid\n", v); | 
					
						
							| 
									
										
										
										
											2013-06-16 15:27:39 +02:00
										 |  |  |                     return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 cblk->nonzerobits = v; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             if ((newpasses = getnpasses(s)) < 0) | 
					
						
							|  |  |  |                 return newpasses; | 
					
						
							| 
									
										
										
										
											2015-06-12 02:02:04 +02:00
										 |  |  |             av_assert2(newpasses > 0); | 
					
						
							|  |  |  |             if (cblk->npasses + newpasses >= JPEG2000_MAX_PASSES) { | 
					
						
							|  |  |  |                 avpriv_request_sample(s->avctx, "Too many passes\n"); | 
					
						
							|  |  |  |                 return AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             if ((llen = getlblockinc(s)) < 0) | 
					
						
							|  |  |  |                 return llen; | 
					
						
							| 
									
										
										
										
											2015-06-12 01:13:55 +02:00
										 |  |  |             if (cblk->lblock + llen + av_log2(newpasses) > 16) { | 
					
						
							|  |  |  |                 avpriv_request_sample(s->avctx, | 
					
						
							|  |  |  |                                       "Block with length beyond 16 bits\n"); | 
					
						
							|  |  |  |                 return AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             cblk->lblock += llen; | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             cblk->nb_lengthinc = 0; | 
					
						
							|  |  |  |             cblk->nb_terminationsinc = 0; | 
					
						
							|  |  |  |             do { | 
					
						
							|  |  |  |                 int newpasses1 = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 while (newpasses1 < newpasses) { | 
					
						
							|  |  |  |                     newpasses1 ++; | 
					
						
							|  |  |  |                     if (needs_termination(codsty->cblk_style, cblk->npasses + newpasses1 - 1)) { | 
					
						
							|  |  |  |                         cblk->nb_terminationsinc ++; | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if ((ret = get_bits(s, av_log2(newpasses1) + cblk->lblock)) < 0) | 
					
						
							|  |  |  |                     return ret; | 
					
						
							|  |  |  |                 if (ret > sizeof(cblk->data)) { | 
					
						
							|  |  |  |                     avpriv_request_sample(s->avctx, | 
					
						
							|  |  |  |                                         "Block with lengthinc greater than %"SIZE_SPECIFIER"", | 
					
						
							|  |  |  |                                         sizeof(cblk->data)); | 
					
						
							|  |  |  |                     return AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 cblk->lengthinc[cblk->nb_lengthinc++] = ret; | 
					
						
							|  |  |  |                 cblk->npasses  += newpasses1; | 
					
						
							|  |  |  |                 newpasses -= newpasses1; | 
					
						
							|  |  |  |             } while(newpasses); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     jpeg2000_flush(s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (codsty->csty & JPEG2000_CSTY_EPH) { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         if (bytestream2_peek_be16(&s->g) == JPEG2000_EPH) | 
					
						
							|  |  |  |             bytestream2_skip(&s->g, 2); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         else | 
					
						
							|  |  |  |             av_log(s->avctx, AV_LOG_ERROR, "EPH marker not found.\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (bandno = 0; bandno < rlevel->nbands; bandno++) { | 
					
						
							|  |  |  |         Jpeg2000Band *band = rlevel->band + bandno; | 
					
						
							|  |  |  |         Jpeg2000Prec *prec = band->prec + precno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         nb_code_blocks = prec->nb_codeblocks_height * prec->nb_codeblocks_width; | 
					
						
							|  |  |  |         for (cblkno = 0; cblkno < nb_code_blocks; cblkno++) { | 
					
						
							|  |  |  |             Jpeg2000Cblk *cblk = prec->cblk + cblkno; | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |             for (cwsno = 0; cwsno < cblk->nb_lengthinc; cwsno ++) { | 
					
						
							|  |  |  |                 if (   bytestream2_get_bytes_left(&s->g) < cblk->lengthinc[cwsno] | 
					
						
							|  |  |  |                     || sizeof(cblk->data) < cblk->length + cblk->lengthinc[cwsno] + 4 | 
					
						
							|  |  |  |                 ) { | 
					
						
							|  |  |  |                     av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							|  |  |  |                         "Block length %"PRIu16" or lengthinc %d is too large\n", | 
					
						
							|  |  |  |                         cblk->length, cblk->lengthinc[cwsno]); | 
					
						
							|  |  |  |                     return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-06-13 03:17:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |                 bytestream2_get_bufferu(&s->g, cblk->data + cblk->length, cblk->lengthinc[cwsno]); | 
					
						
							|  |  |  |                 cblk->length   += cblk->lengthinc[cwsno]; | 
					
						
							|  |  |  |                 cblk->lengthinc[cwsno] = 0; | 
					
						
							|  |  |  |                 if (cblk->nb_terminationsinc) { | 
					
						
							|  |  |  |                     cblk->nb_terminationsinc--; | 
					
						
							|  |  |  |                     cblk->nb_terminations++; | 
					
						
							|  |  |  |                     cblk->data[cblk->length++] = 0xFF; | 
					
						
							|  |  |  |                     cblk->data[cblk->length++] = 0xFF; | 
					
						
							|  |  |  |                     cblk->data_start[cblk->nb_terminations] = cblk->length; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int jpeg2000_decode_packets(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:31 +02:00
										 |  |  |     int ret = 0; | 
					
						
							|  |  |  |     int layno, reslevelno, compno, precno, ok_reslevel; | 
					
						
							| 
									
										
										
										
											2013-05-31 01:53:13 +02:00
										 |  |  |     int x, y; | 
					
						
							| 
									
										
										
										
											2015-06-12 04:35:18 +02:00
										 |  |  |     int tp_index = 0; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->bit_index = 8; | 
					
						
							| 
									
										
										
										
											2013-05-31 01:53:13 +02:00
										 |  |  |     switch (tile->codsty[0].prog_order) { | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     case JPEG2000_PGOD_RLCP: | 
					
						
							| 
									
										
										
										
											2015-06-12 04:36:38 +02:00
										 |  |  |         av_log(s->avctx, AV_LOG_DEBUG, "Progression order RLCP\n"); | 
					
						
							| 
									
										
										
										
											2015-06-11 21:10:44 +02:00
										 |  |  |         ok_reslevel = 1; | 
					
						
							|  |  |  |         for (reslevelno = 0; ok_reslevel; reslevelno++) { | 
					
						
							|  |  |  |             ok_reslevel = 0; | 
					
						
							|  |  |  |             for (layno = 0; layno < tile->codsty[0].nlayers; layno++) { | 
					
						
							|  |  |  |                 for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							|  |  |  |                     Jpeg2000CodingStyle *codsty = tile->codsty + compno; | 
					
						
							|  |  |  |                     Jpeg2000QuantStyle *qntsty  = tile->qntsty + compno; | 
					
						
							|  |  |  |                     if (reslevelno < codsty->nreslevels) { | 
					
						
							|  |  |  |                         Jpeg2000ResLevel *rlevel = tile->comp[compno].reslevel + | 
					
						
							|  |  |  |                                                 reslevelno; | 
					
						
							|  |  |  |                         ok_reslevel = 1; | 
					
						
							|  |  |  |                         for (precno = 0; precno < rlevel->num_precincts_x * rlevel->num_precincts_y; precno++) | 
					
						
							| 
									
										
										
										
											2015-06-12 04:35:18 +02:00
										 |  |  |                             if ((ret = jpeg2000_decode_packet(s, tile, &tp_index, | 
					
						
							| 
									
										
										
										
											2015-06-11 21:10:44 +02:00
										 |  |  |                                                               codsty, rlevel, | 
					
						
							|  |  |  |                                                               precno, layno, | 
					
						
							|  |  |  |                                                               qntsty->expn + (reslevelno ? 3 * (reslevelno - 1) + 1 : 0), | 
					
						
							|  |  |  |                                                               qntsty->nguardbits)) < 0) | 
					
						
							|  |  |  |                                 return ret; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2013-07-03 16:22:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     case JPEG2000_PGOD_LRCP: | 
					
						
							|  |  |  |         for (layno = 0; layno < tile->codsty[0].nlayers; layno++) { | 
					
						
							|  |  |  |             ok_reslevel = 1; | 
					
						
							|  |  |  |             for (reslevelno = 0; ok_reslevel; reslevelno++) { | 
					
						
							|  |  |  |                 ok_reslevel = 0; | 
					
						
							|  |  |  |                 for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							|  |  |  |                     Jpeg2000CodingStyle *codsty = tile->codsty + compno; | 
					
						
							|  |  |  |                     Jpeg2000QuantStyle *qntsty  = tile->qntsty + compno; | 
					
						
							|  |  |  |                     if (reslevelno < codsty->nreslevels) { | 
					
						
							|  |  |  |                         Jpeg2000ResLevel *rlevel = tile->comp[compno].reslevel + | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |                                                 reslevelno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                         ok_reslevel = 1; | 
					
						
							|  |  |  |                         for (precno = 0; precno < rlevel->num_precincts_x * rlevel->num_precincts_y; precno++) | 
					
						
							| 
									
										
										
										
											2015-06-12 04:35:18 +02:00
										 |  |  |                             if ((ret = jpeg2000_decode_packet(s, tile, &tp_index, | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |                                                               codsty, rlevel, | 
					
						
							|  |  |  |                                                               precno, layno, | 
					
						
							|  |  |  |                                                               qntsty->expn + (reslevelno ? 3 * (reslevelno - 1) + 1 : 0), | 
					
						
							|  |  |  |                                                               qntsty->nguardbits)) < 0) | 
					
						
							|  |  |  |                                 return ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case JPEG2000_PGOD_CPRL: | 
					
						
							|  |  |  |         for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							| 
									
										
										
										
											2015-06-13 12:38:49 +02:00
										 |  |  |             Jpeg2000Component *comp     = tile->comp + compno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             Jpeg2000CodingStyle *codsty = tile->codsty + compno; | 
					
						
							|  |  |  |             Jpeg2000QuantStyle *qntsty  = tile->qntsty + compno; | 
					
						
							| 
									
										
										
										
											2015-06-13 12:19:22 +02:00
										 |  |  |             int step_x = 32; | 
					
						
							|  |  |  |             int step_y = 32; | 
					
						
							| 
									
										
										
										
											2015-06-13 12:58:45 +02:00
										 |  |  |             int maxlogstep_x = 0; | 
					
						
							|  |  |  |             int maxlogstep_y = 0; | 
					
						
							| 
									
										
										
										
											2015-06-13 12:19:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) { | 
					
						
							|  |  |  |                 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; //  ==> N_L - r
 | 
					
						
							| 
									
										
										
										
											2015-06-13 12:38:49 +02:00
										 |  |  |                 Jpeg2000ResLevel *rlevel = comp->reslevel + reslevelno; | 
					
						
							| 
									
										
										
										
											2015-06-13 12:19:22 +02:00
										 |  |  |                 step_x = FFMIN(step_x, rlevel->log2_prec_width  + reducedresno); | 
					
						
							|  |  |  |                 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno); | 
					
						
							| 
									
										
										
										
											2015-06-13 12:58:45 +02:00
										 |  |  |                 maxlogstep_x = FFMAX(maxlogstep_x, rlevel->log2_prec_width  + reducedresno); | 
					
						
							|  |  |  |                 maxlogstep_y = FFMAX(maxlogstep_y, rlevel->log2_prec_height + reducedresno); | 
					
						
							| 
									
										
										
										
											2015-06-13 12:19:22 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |             step_x = 1<<step_x; | 
					
						
							|  |  |  |             step_y = 1<<step_y; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-13 12:58:45 +02:00
										 |  |  |             y = comp->coord_o[1][0] >> maxlogstep_y << maxlogstep_y; | 
					
						
							|  |  |  |             for (; y < comp->coord_o[1][1]; y += step_y) { | 
					
						
							|  |  |  |                 x = comp->coord_o[0][0] >> maxlogstep_x << maxlogstep_x; | 
					
						
							|  |  |  |                 for (; x < comp->coord_o[0][1]; x += step_x) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                     for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) { | 
					
						
							|  |  |  |                         uint16_t prcx, prcy; | 
					
						
							|  |  |  |                         uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; //  ==> N_L - r
 | 
					
						
							| 
									
										
										
										
											2015-06-13 12:38:49 +02:00
										 |  |  |                         Jpeg2000ResLevel *rlevel = comp->reslevel + reslevelno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         if (!((y % (1 << (rlevel->log2_prec_height + reducedresno)) == 0) || | 
					
						
							|  |  |  |                               (y == 0))) // TODO: 2nd condition simplified as try0 always =0 for dcinema
 | 
					
						
							|  |  |  |                             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (!((x % (1 << (rlevel->log2_prec_width + reducedresno)) == 0) || | 
					
						
							|  |  |  |                               (x == 0))) // TODO: 2nd condition simplified as try0 always =0 for dcinema
 | 
					
						
							|  |  |  |                             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         // check if a precinct exists
 | 
					
						
							|  |  |  |                         prcx   = ff_jpeg2000_ceildivpow2(x, reducedresno) >> rlevel->log2_prec_width; | 
					
						
							|  |  |  |                         prcy   = ff_jpeg2000_ceildivpow2(y, reducedresno) >> rlevel->log2_prec_height; | 
					
						
							|  |  |  |                         precno = prcx + rlevel->num_precincts_x * prcy; | 
					
						
							| 
									
										
										
										
											2013-11-24 03:50:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 16:26:27 +02:00
										 |  |  |                         if (prcx >= rlevel->num_precincts_x || prcy >= rlevel->num_precincts_y) { | 
					
						
							|  |  |  |                             av_log(s->avctx, AV_LOG_WARNING, "prc %d %d outside limits %d %d\n", | 
					
						
							|  |  |  |                                    prcx, prcy, rlevel->num_precincts_x, rlevel->num_precincts_y); | 
					
						
							|  |  |  |                             continue; | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2013-11-24 03:50:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                         for (layno = 0; layno < tile->codsty[0].nlayers; layno++) { | 
					
						
							| 
									
										
										
										
											2015-06-12 04:35:18 +02:00
										 |  |  |                             if ((ret = jpeg2000_decode_packet(s, tile, &tp_index, codsty, rlevel, | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |                                                               precno, layno, | 
					
						
							|  |  |  |                                                               qntsty->expn + (reslevelno ? 3 * (reslevelno - 1) + 1 : 0), | 
					
						
							|  |  |  |                                                               qntsty->nguardbits)) < 0) | 
					
						
							|  |  |  |                                 return ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:31 +02:00
										 |  |  |     case JPEG2000_PGOD_RPCL: | 
					
						
							|  |  |  |         avpriv_request_sample(s->avctx, "Progression order RPCL"); | 
					
						
							|  |  |  |         ret = AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case JPEG2000_PGOD_PCRL: | 
					
						
							|  |  |  |         avpriv_request_sample(s->avctx, "Progression order PCRL"); | 
					
						
							|  |  |  |         ret = AVERROR_PATCHWELCOME; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* EOC marker reached */ | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     bytestream2_skip(&s->g, 2); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:31 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* TIER-1 routines */ | 
					
						
							|  |  |  | static void decode_sigpass(Jpeg2000T1Context *t1, int width, int height, | 
					
						
							| 
									
										
										
										
											2015-06-12 03:33:31 +02:00
										 |  |  |                            int bpno, int bandno, | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |                            int vert_causal_ctx_csty_symbol) | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     int mask = 3 << (bpno - 1), y0, x, y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (y0 = 0; y0 < height; y0 += 4) | 
					
						
							|  |  |  |         for (x = 0; x < width; x++) | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |             for (y = y0; y < height && y < y0 + 4; y++) { | 
					
						
							|  |  |  |                 if ((t1->flags[y+1][x+1] & JPEG2000_T1_SIG_NB) | 
					
						
							|  |  |  |                 && !(t1->flags[y+1][x+1] & (JPEG2000_T1_SIG | JPEG2000_T1_VIS))) { | 
					
						
							|  |  |  |                     int flags_mask = -1; | 
					
						
							|  |  |  |                     if (vert_causal_ctx_csty_symbol && y == y0 + 3) | 
					
						
							|  |  |  |                         flags_mask &= ~(JPEG2000_T1_SIG_S | JPEG2000_T1_SIG_SW | JPEG2000_T1_SIG_SE); | 
					
						
							|  |  |  |                     if (ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + ff_jpeg2000_getsigctxno(t1->flags[y+1][x+1] & flags_mask, bandno))) { | 
					
						
							|  |  |  |                         int xorbit, ctxno = ff_jpeg2000_getsgnctxno(t1->flags[y+1][x+1], &xorbit); | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |                         if (t1->mqc.raw) | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |                              t1->data[y][x] = ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + ctxno) ? -mask : mask; | 
					
						
							|  |  |  |                         else | 
					
						
							|  |  |  |                              t1->data[y][x] = (ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + ctxno) ^ xorbit) ? | 
					
						
							|  |  |  |                                                -mask : mask; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         ff_jpeg2000_set_significance(t1, x, y, | 
					
						
							|  |  |  |                                                      t1->data[y][x] < 0); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     t1->flags[y + 1][x + 1] |= JPEG2000_T1_VIS; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void decode_refpass(Jpeg2000T1Context *t1, int width, int height, | 
					
						
							|  |  |  |                            int bpno) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int phalf, nhalf; | 
					
						
							|  |  |  |     int y0, x, y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     phalf = 1 << (bpno - 1); | 
					
						
							|  |  |  |     nhalf = -phalf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (y0 = 0; y0 < height; y0 += 4) | 
					
						
							|  |  |  |         for (x = 0; x < width; x++) | 
					
						
							|  |  |  |             for (y = y0; y < height && y < y0 + 4; y++) | 
					
						
							|  |  |  |                 if ((t1->flags[y + 1][x + 1] & (JPEG2000_T1_SIG | JPEG2000_T1_VIS)) == JPEG2000_T1_SIG) { | 
					
						
							|  |  |  |                     int ctxno = ff_jpeg2000_getrefctxno(t1->flags[y + 1][x + 1]); | 
					
						
							|  |  |  |                     int r     = ff_mqc_decode(&t1->mqc, | 
					
						
							|  |  |  |                                               t1->mqc.cx_states + ctxno) | 
					
						
							|  |  |  |                                 ? phalf : nhalf; | 
					
						
							|  |  |  |                     t1->data[y][x]          += t1->data[y][x] < 0 ? -r : r; | 
					
						
							|  |  |  |                     t1->flags[y + 1][x + 1] |= JPEG2000_T1_REF; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void decode_clnpass(Jpeg2000DecoderContext *s, Jpeg2000T1Context *t1, | 
					
						
							|  |  |  |                            int width, int height, int bpno, int bandno, | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |                            int seg_symbols, int vert_causal_ctx_csty_symbol) | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     int mask = 3 << (bpno - 1), y0, x, y, runlen, dec; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     for (y0 = 0; y0 < height; y0 += 4) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         for (x = 0; x < width; x++) { | 
					
						
							|  |  |  |             if (y0 + 3 < height && | 
					
						
							|  |  |  |                 !((t1->flags[y0 + 1][x + 1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG)) || | 
					
						
							|  |  |  |                   (t1->flags[y0 + 2][x + 1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG)) || | 
					
						
							|  |  |  |                   (t1->flags[y0 + 3][x + 1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG)) || | 
					
						
							|  |  |  |                   (t1->flags[y0 + 4][x + 1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG)))) { | 
					
						
							|  |  |  |                 if (!ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + MQC_CX_RL)) | 
					
						
							|  |  |  |                     continue; | 
					
						
							|  |  |  |                 runlen = ff_mqc_decode(&t1->mqc, | 
					
						
							|  |  |  |                                        t1->mqc.cx_states + MQC_CX_UNI); | 
					
						
							|  |  |  |                 runlen = (runlen << 1) | ff_mqc_decode(&t1->mqc, | 
					
						
							|  |  |  |                                                        t1->mqc.cx_states + | 
					
						
							|  |  |  |                                                        MQC_CX_UNI); | 
					
						
							|  |  |  |                 dec = 1; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 runlen = 0; | 
					
						
							|  |  |  |                 dec    = 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for (y = y0 + runlen; y < y0 + 4 && y < height; y++) { | 
					
						
							|  |  |  |                 if (!dec) { | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |                     if (!(t1->flags[y+1][x+1] & (JPEG2000_T1_SIG | JPEG2000_T1_VIS))) { | 
					
						
							|  |  |  |                         int flags_mask = -1; | 
					
						
							|  |  |  |                         if (vert_causal_ctx_csty_symbol && y == y0 + 3) | 
					
						
							|  |  |  |                             flags_mask &= ~(JPEG2000_T1_SIG_S | JPEG2000_T1_SIG_SW | JPEG2000_T1_SIG_SE); | 
					
						
							|  |  |  |                         dec = ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + ff_jpeg2000_getsigctxno(t1->flags[y+1][x+1] & flags_mask, | 
					
						
							|  |  |  |                                                                                              bandno)); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 if (dec) { | 
					
						
							|  |  |  |                     int xorbit; | 
					
						
							|  |  |  |                     int ctxno = ff_jpeg2000_getsgnctxno(t1->flags[y + 1][x + 1], | 
					
						
							|  |  |  |                                                         &xorbit); | 
					
						
							|  |  |  |                     t1->data[y][x] = (ff_mqc_decode(&t1->mqc, | 
					
						
							|  |  |  |                                                     t1->mqc.cx_states + ctxno) ^ | 
					
						
							|  |  |  |                                       xorbit) | 
					
						
							|  |  |  |                                      ? -mask : mask; | 
					
						
							|  |  |  |                     ff_jpeg2000_set_significance(t1, x, y, t1->data[y][x] < 0); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 dec = 0; | 
					
						
							|  |  |  |                 t1->flags[y + 1][x + 1] &= ~JPEG2000_T1_VIS; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     if (seg_symbols) { | 
					
						
							|  |  |  |         int val; | 
					
						
							|  |  |  |         val = ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + MQC_CX_UNI); | 
					
						
							|  |  |  |         val = (val << 1) + ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + MQC_CX_UNI); | 
					
						
							|  |  |  |         val = (val << 1) + ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + MQC_CX_UNI); | 
					
						
							|  |  |  |         val = (val << 1) + ff_mqc_decode(&t1->mqc, t1->mqc.cx_states + MQC_CX_UNI); | 
					
						
							|  |  |  |         if (val != 0xa) | 
					
						
							|  |  |  |             av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							|  |  |  |                    "Segmentation symbol value incorrect\n"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int decode_cblk(Jpeg2000DecoderContext *s, Jpeg2000CodingStyle *codsty, | 
					
						
							|  |  |  |                        Jpeg2000T1Context *t1, Jpeg2000Cblk *cblk, | 
					
						
							|  |  |  |                        int width, int height, int bandpos) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int passno = cblk->npasses, pass_t = 2, bpno = cblk->nonzerobits - 1, y; | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |     int pass_cnt = 0; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:32 +02:00
										 |  |  |     int vert_causal_ctx_csty_symbol = codsty->cblk_style & JPEG2000_CBLK_VSC; | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |     int term_cnt = 0; | 
					
						
							|  |  |  |     int coder_type; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-24 03:19:40 +02:00
										 |  |  |     av_assert0(width  <= JPEG2000_MAX_CBLKW); | 
					
						
							|  |  |  |     av_assert0(height <= JPEG2000_MAX_CBLKH); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     for (y = 0; y < height; y++) | 
					
						
							| 
									
										
										
										
											2013-05-30 20:54:52 +02:00
										 |  |  |         memset(t1->data[y], 0, width * sizeof(**t1->data)); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 12:25:09 +02:00
										 |  |  |     /* If code-block contains no compressed data: nothing to do. */ | 
					
						
							| 
									
										
										
										
											2013-04-30 11:09:55 +02:00
										 |  |  |     if (!cblk->length) | 
					
						
							| 
									
										
										
										
											2013-04-29 12:25:09 +02:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 11:09:55 +02:00
										 |  |  |     for (y = 0; y < height + 2; y++) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:27 +02:00
										 |  |  |         memset(t1->flags[y], 0, (width + 2) * sizeof(**t1->flags)); | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     cblk->data[cblk->length] = 0xff; | 
					
						
							|  |  |  |     cblk->data[cblk->length+1] = 0xff; | 
					
						
							| 
									
										
										
										
											2015-06-12 03:02:09 +02:00
										 |  |  |     ff_mqc_initdec(&t1->mqc, cblk->data, 0, 1); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     while (passno--) { | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         switch(pass_t) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         case 0: | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |             decode_sigpass(t1, width, height, bpno + 1, bandpos, | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:32 +02:00
										 |  |  |                            vert_causal_ctx_csty_symbol); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 1: | 
					
						
							|  |  |  |             decode_refpass(t1, width, height, bpno + 1); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |             av_assert2(!t1->mqc.raw); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             decode_clnpass(s, t1, width, height, bpno + 1, bandpos, | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:32 +02:00
										 |  |  |                            codsty->cblk_style & JPEG2000_CBLK_SEGSYM, | 
					
						
							|  |  |  |                            vert_causal_ctx_csty_symbol); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |         if ((coder_type = needs_termination(codsty->cblk_style, pass_cnt))) { | 
					
						
							|  |  |  |             if (term_cnt >= cblk->nb_terminations) { | 
					
						
							|  |  |  |                 av_log(s->avctx, AV_LOG_ERROR, "Missing needed termination \n"); | 
					
						
							|  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             ff_mqc_initdec(&t1->mqc, cblk->data + cblk->data_start[++term_cnt], coder_type == 2, 0); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         pass_t++; | 
					
						
							|  |  |  |         if (pass_t == 3) { | 
					
						
							|  |  |  |             bpno--; | 
					
						
							|  |  |  |             pass_t = 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-06-12 03:06:56 +02:00
										 |  |  |         pass_cnt ++; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* TODO: Verify dequantization for lossless case
 | 
					
						
							|  |  |  |  * comp->data can be float or int | 
					
						
							|  |  |  |  * band->stepsize can be float or int | 
					
						
							|  |  |  |  * depending on the type of DWT transformation. | 
					
						
							|  |  |  |  * see ISO/IEC 15444-1:2002 A.6.1 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Float dequantization of a codeblock.*/ | 
					
						
							|  |  |  | static void dequantization_float(int x, int y, Jpeg2000Cblk *cblk, | 
					
						
							|  |  |  |                                  Jpeg2000Component *comp, | 
					
						
							|  |  |  |                                  Jpeg2000T1Context *t1, Jpeg2000Band *band) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-31 15:36:49 +02:00
										 |  |  |     int i, j; | 
					
						
							|  |  |  |     int w = cblk->coord[0][1] - cblk->coord[0][0]; | 
					
						
							|  |  |  |     for (j = 0; j < (cblk->coord[1][1] - cblk->coord[1][0]); ++j) { | 
					
						
							|  |  |  |         float *datap = &comp->f_data[(comp->coord[0][1] - comp->coord[0][0]) * (y + j) + x]; | 
					
						
							|  |  |  |         int *src = t1->data[j]; | 
					
						
							|  |  |  |         for (i = 0; i < w; ++i) | 
					
						
							|  |  |  |             datap[i] = src[i] * band->f_stepsize; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Integer dequantization of a codeblock.*/ | 
					
						
							|  |  |  | static void dequantization_int(int x, int y, Jpeg2000Cblk *cblk, | 
					
						
							|  |  |  |                                Jpeg2000Component *comp, | 
					
						
							|  |  |  |                                Jpeg2000T1Context *t1, Jpeg2000Band *band) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-31 15:39:22 +02:00
										 |  |  |     int i, j; | 
					
						
							|  |  |  |     int w = cblk->coord[0][1] - cblk->coord[0][0]; | 
					
						
							|  |  |  |     for (j = 0; j < (cblk->coord[1][1] - cblk->coord[1][0]); ++j) { | 
					
						
							|  |  |  |         int32_t *datap = &comp->i_data[(comp->coord[0][1] - comp->coord[0][0]) * (y + j) + x]; | 
					
						
							|  |  |  |         int *src = t1->data[j]; | 
					
						
							|  |  |  |         for (i = 0; i < w; ++i) | 
					
						
							| 
									
										
										
										
											2015-06-09 02:01:40 +02:00
										 |  |  |             datap[i] = (src[i] * band->i_stepsize) / 32768; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void dequantization_int_97(int x, int y, Jpeg2000Cblk *cblk, | 
					
						
							|  |  |  |                                Jpeg2000Component *comp, | 
					
						
							|  |  |  |                                Jpeg2000T1Context *t1, Jpeg2000Band *band) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i, j; | 
					
						
							|  |  |  |     int w = cblk->coord[0][1] - cblk->coord[0][0]; | 
					
						
							|  |  |  |     for (j = 0; j < (cblk->coord[1][1] - cblk->coord[1][0]); ++j) { | 
					
						
							|  |  |  |         int32_t *datap = &comp->i_data[(comp->coord[0][1] - comp->coord[0][0]) * (y + j) + x]; | 
					
						
							|  |  |  |         int *src = t1->data[j]; | 
					
						
							|  |  |  |         for (i = 0; i < w; ++i) | 
					
						
							|  |  |  |             datap[i] = (src[i] * band->i_stepsize + (1<<14)) >> 15; | 
					
						
							| 
									
										
										
										
											2013-05-31 15:39:22 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  | static inline void mct_decode(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile) | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     int i, csize = 1; | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  |     void *src[3]; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 00:37:26 +02:00
										 |  |  |     for (i = 1; i < 3; i++) { | 
					
						
							| 
									
										
										
										
											2013-08-19 03:33:40 +02:00
										 |  |  |         if (tile->codsty[0].transform != tile->codsty[i].transform) { | 
					
						
							|  |  |  |             av_log(s->avctx, AV_LOG_ERROR, "Transforms mismatch, MCT not supported\n"); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-06-09 00:37:26 +02:00
										 |  |  |         if (memcmp(tile->comp[0].coord, tile->comp[i].coord, sizeof(tile->comp[0].coord))) { | 
					
						
							|  |  |  |             av_log(s->avctx, AV_LOG_ERROR, "Coords mismatch, MCT not supported\n"); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-08-19 03:33:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     for (i = 0; i < 3; i++) | 
					
						
							|  |  |  |         if (tile->codsty[0].transform == FF_DWT97) | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  |             src[i] = tile->comp[i].f_data; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  |             src[i] = tile->comp[i].i_data; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < 2; i++) | 
					
						
							|  |  |  |         csize *= tile->comp[0].coord[i][1] - tile->comp[0].coord[i][0]; | 
					
						
							| 
									
										
										
										
											2013-05-30 21:12:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  |     s->dsp.mct_decode[tile->codsty[0].transform](src[0], src[1], src[2], csize); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int jpeg2000_decode_tile(Jpeg2000DecoderContext *s, Jpeg2000Tile *tile, | 
					
						
							|  |  |  |                                 AVFrame *picture) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-02-07 16:25:33 +01:00
										 |  |  |     const AVPixFmtDescriptor *pixdesc = av_pix_fmt_desc_get(s->avctx->pix_fmt); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     int compno, reslevelno, bandno; | 
					
						
							|  |  |  |     int x, y; | 
					
						
							| 
									
										
										
										
											2014-01-20 18:31:52 +01:00
										 |  |  |     int planar    = !!(pixdesc->flags & AV_PIX_FMT_FLAG_PLANAR); | 
					
						
							|  |  |  |     int pixelsize = planar ? 1 : pixdesc->nb_components; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     uint8_t *line; | 
					
						
							|  |  |  |     Jpeg2000T1Context t1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 17:14:19 +02:00
										 |  |  |     /* Loop on tile components */ | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							|  |  |  |         Jpeg2000Component *comp     = tile->comp + compno; | 
					
						
							|  |  |  |         Jpeg2000CodingStyle *codsty = tile->codsty + compno; | 
					
						
							| 
									
										
										
										
											2013-05-30 21:12:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         /* Loop on resolution levels */ | 
					
						
							|  |  |  |         for (reslevelno = 0; reslevelno < codsty->nreslevels2decode; reslevelno++) { | 
					
						
							|  |  |  |             Jpeg2000ResLevel *rlevel = comp->reslevel + reslevelno; | 
					
						
							|  |  |  |             /* Loop on bands */ | 
					
						
							|  |  |  |             for (bandno = 0; bandno < rlevel->nbands; bandno++) { | 
					
						
							| 
									
										
										
										
											2013-05-30 21:12:14 +02:00
										 |  |  |                 int nb_precincts, precno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 Jpeg2000Band *band = rlevel->band + bandno; | 
					
						
							|  |  |  |                 int cblkno = 0, bandpos; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 bandpos = bandno + (reslevelno > 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:33 +02:00
										 |  |  |                 if (band->coord[0][0] == band->coord[0][1] || | 
					
						
							|  |  |  |                     band->coord[1][0] == band->coord[1][1]) | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |                     continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 nb_precincts = rlevel->num_precincts_x * rlevel->num_precincts_y; | 
					
						
							|  |  |  |                 /* Loop on precincts */ | 
					
						
							|  |  |  |                 for (precno = 0; precno < nb_precincts; precno++) { | 
					
						
							|  |  |  |                     Jpeg2000Prec *prec = band->prec + precno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     /* Loop on codeblocks */ | 
					
						
							|  |  |  |                     for (cblkno = 0; cblkno < prec->nb_codeblocks_width * prec->nb_codeblocks_height; cblkno++) { | 
					
						
							|  |  |  |                         int x, y; | 
					
						
							|  |  |  |                         Jpeg2000Cblk *cblk = prec->cblk + cblkno; | 
					
						
							|  |  |  |                         decode_cblk(s, codsty, &t1, cblk, | 
					
						
							|  |  |  |                                     cblk->coord[0][1] - cblk->coord[0][0], | 
					
						
							|  |  |  |                                     cblk->coord[1][1] - cblk->coord[1][0], | 
					
						
							|  |  |  |                                     bandpos); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         x = cblk->coord[0][0]; | 
					
						
							|  |  |  |                         y = cblk->coord[1][0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-28 21:58:48 +02:00
										 |  |  |                         if (codsty->transform == FF_DWT97) | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                             dequantization_float(x, y, cblk, comp, &t1, band); | 
					
						
							| 
									
										
										
										
											2015-06-09 02:01:40 +02:00
										 |  |  |                         else if (codsty->transform == FF_DWT97_INT) | 
					
						
							|  |  |  |                             dequantization_int_97(x, y, cblk, comp, &t1, band); | 
					
						
							| 
									
										
										
										
											2013-05-28 21:58:48 +02:00
										 |  |  |                         else | 
					
						
							|  |  |  |                             dequantization_int(x, y, cblk, comp, &t1, band); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                    } /* end cblk */ | 
					
						
							|  |  |  |                 } /*end prec */ | 
					
						
							|  |  |  |             } /* end band */ | 
					
						
							|  |  |  |         } /* end reslevel */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* inverse DWT */ | 
					
						
							| 
									
										
										
										
											2013-05-30 14:11:03 +02:00
										 |  |  |         ff_dwt_decode(&comp->dwt, codsty->transform == FF_DWT97 ? (void*)comp->f_data : (void*)comp->i_data); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } /*end comp */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* inverse MCT transformation */ | 
					
						
							|  |  |  |     if (tile->codsty[0].mct) | 
					
						
							|  |  |  |         mct_decode(s, tile); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-08 00:57:32 +02:00
										 |  |  |     if (s->cdef[0] < 0) { | 
					
						
							|  |  |  |         for (x = 0; x < s->ncomponents; x++) | 
					
						
							|  |  |  |             s->cdef[x] = x + 1; | 
					
						
							|  |  |  |         if ((s->ncomponents & 1) == 0) | 
					
						
							|  |  |  |             s->cdef[s->ncomponents-1] = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     if (s->precision <= 8) { | 
					
						
							|  |  |  |         for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							|  |  |  |             Jpeg2000Component *comp = tile->comp + compno; | 
					
						
							| 
									
										
										
										
											2013-06-06 15:22:21 +02:00
										 |  |  |             Jpeg2000CodingStyle *codsty = tile->codsty + compno; | 
					
						
							| 
									
										
										
										
											2013-05-30 14:11:03 +02:00
										 |  |  |             float *datap = comp->f_data; | 
					
						
							|  |  |  |             int32_t *i_datap = comp->i_data; | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |             int cbps = s->cbps[compno]; | 
					
						
							|  |  |  |             int w = tile->comp[compno].coord[0][1] - s->image_offset_x; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |             int plane = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (planar) | 
					
						
							|  |  |  |                 plane = s->cdef[compno] ? s->cdef[compno]-1 : (s->ncomponents-1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-30 17:14:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             y    = tile->comp[compno].coord[1][0] - s->image_offset_y; | 
					
						
							| 
									
										
										
										
											2013-10-13 21:18:23 +02:00
										 |  |  |             line = picture->data[plane] + y / s->cdy[compno] * picture->linesize[plane]; | 
					
						
							| 
									
										
										
										
											2015-06-09 00:27:15 +02:00
										 |  |  |             for (; y < tile->comp[compno].coord[1][1] - s->image_offset_y; y ++) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 uint8_t *dst; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 x   = tile->comp[compno].coord[0][0] - s->image_offset_x; | 
					
						
							| 
									
										
										
										
											2013-10-13 21:18:23 +02:00
										 |  |  |                 dst = line + x / s->cdx[compno] * pixelsize + compno*!planar; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-06 15:22:21 +02:00
										 |  |  |                 if (codsty->transform == FF_DWT97) { | 
					
						
							| 
									
										
										
										
											2015-06-09 00:27:15 +02:00
										 |  |  |                     for (; x < w; x ++) { | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                         int val = lrintf(*datap) + (1 << (cbps - 1)); | 
					
						
							|  |  |  |                         /* DC level shift and clip see ISO 15444-1:2002 G.1.2 */ | 
					
						
							|  |  |  |                         val = av_clip(val, 0, (1 << cbps) - 1); | 
					
						
							|  |  |  |                         *dst = val << (8 - cbps); | 
					
						
							|  |  |  |                         datap++; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |                         dst += pixelsize; | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2015-06-09 00:27:15 +02:00
										 |  |  |                     for (; x < w; x ++) { | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                         int val = *i_datap + (1 << (cbps - 1)); | 
					
						
							|  |  |  |                         /* DC level shift and clip see ISO 15444-1:2002 G.1.2 */ | 
					
						
							|  |  |  |                         val = av_clip(val, 0, (1 << cbps) - 1); | 
					
						
							|  |  |  |                         *dst = val << (8 - cbps); | 
					
						
							|  |  |  |                         i_datap++; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |                         dst += pixelsize; | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |                 line += picture->linesize[plane]; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2015-06-09 20:26:38 +02:00
										 |  |  |         int precision = picture->format == AV_PIX_FMT_XYZ12 || | 
					
						
							| 
									
										
										
										
											2015-06-10 04:19:38 +02:00
										 |  |  |                         picture->format == AV_PIX_FMT_RGB48 || | 
					
						
							|  |  |  |                         picture->format == AV_PIX_FMT_RGBA64 || | 
					
						
							| 
									
										
										
										
											2015-06-09 20:26:38 +02:00
										 |  |  |                         picture->format == AV_PIX_FMT_GRAY16 ? 16 : s->precision; | 
					
						
							| 
									
										
										
										
											2015-06-08 23:36:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							|  |  |  |             Jpeg2000Component *comp = tile->comp + compno; | 
					
						
							| 
									
										
										
										
											2013-06-06 15:22:21 +02:00
										 |  |  |             Jpeg2000CodingStyle *codsty = tile->codsty + compno; | 
					
						
							| 
									
										
										
										
											2013-05-30 14:11:03 +02:00
										 |  |  |             float *datap = comp->f_data; | 
					
						
							|  |  |  |             int32_t *i_datap = comp->i_data; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             uint16_t *linel; | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |             int cbps = s->cbps[compno]; | 
					
						
							|  |  |  |             int w = tile->comp[compno].coord[0][1] - s->image_offset_x; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |             int plane = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (planar) | 
					
						
							|  |  |  |                 plane = s->cdef[compno] ? s->cdef[compno]-1 : (s->ncomponents-1); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             y     = tile->comp[compno].coord[1][0] - s->image_offset_y; | 
					
						
							| 
									
										
										
										
											2013-10-13 21:18:23 +02:00
										 |  |  |             linel = (uint16_t *)picture->data[plane] + y / s->cdy[compno] * (picture->linesize[plane] >> 1); | 
					
						
							| 
									
										
										
										
											2015-06-09 00:27:15 +02:00
										 |  |  |             for (; y < tile->comp[compno].coord[1][1] - s->image_offset_y; y ++) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 uint16_t *dst; | 
					
						
							| 
									
										
										
										
											2013-05-30 21:12:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 x   = tile->comp[compno].coord[0][0] - s->image_offset_x; | 
					
						
							| 
									
										
										
										
											2013-10-13 21:18:23 +02:00
										 |  |  |                 dst = linel + (x / s->cdx[compno] * pixelsize + compno*!planar); | 
					
						
							| 
									
										
										
										
											2013-06-06 15:22:21 +02:00
										 |  |  |                 if (codsty->transform == FF_DWT97) { | 
					
						
							| 
									
										
										
										
											2015-06-09 00:27:15 +02:00
										 |  |  |                     for (; x < w; x ++) { | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                         int  val = lrintf(*datap) + (1 << (cbps - 1)); | 
					
						
							|  |  |  |                         /* DC level shift and clip see ISO 15444-1:2002 G.1.2 */ | 
					
						
							|  |  |  |                         val = av_clip(val, 0, (1 << cbps) - 1); | 
					
						
							|  |  |  |                         /* align 12 bit values in little-endian mode */ | 
					
						
							| 
									
										
										
										
											2015-06-08 23:36:59 +02:00
										 |  |  |                         *dst = val << (precision - cbps); | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                         datap++; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |                         dst += pixelsize; | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2015-06-09 00:27:15 +02:00
										 |  |  |                     for (; x < w; x ++) { | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                         int val = *i_datap + (1 << (cbps - 1)); | 
					
						
							|  |  |  |                         /* DC level shift and clip see ISO 15444-1:2002 G.1.2 */ | 
					
						
							|  |  |  |                         val = av_clip(val, 0, (1 << cbps) - 1); | 
					
						
							|  |  |  |                         /* align 12 bit values in little-endian mode */ | 
					
						
							| 
									
										
										
										
											2015-06-08 23:36:59 +02:00
										 |  |  |                         *dst = val << (precision - cbps); | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                         i_datap++; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |                         dst += pixelsize; | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-07-08 00:58:40 +02:00
										 |  |  |                 linel += picture->linesize[plane] >> 1; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-06-01 18:31:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void jpeg2000_dec_cleanup(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int tileno, compno; | 
					
						
							|  |  |  |     for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++) { | 
					
						
							| 
									
										
										
										
											2013-08-18 18:44:12 +02:00
										 |  |  |         if (s->tile[tileno].comp) { | 
					
						
							|  |  |  |             for (compno = 0; compno < s->ncomponents; compno++) { | 
					
						
							|  |  |  |                 Jpeg2000Component *comp     = s->tile[tileno].comp   + compno; | 
					
						
							|  |  |  |                 Jpeg2000CodingStyle *codsty = s->tile[tileno].codsty + compno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 18:44:12 +02:00
										 |  |  |                 ff_jpeg2000_cleanup(comp, codsty); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             av_freep(&s->tile[tileno].comp); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     av_freep(&s->tile); | 
					
						
							| 
									
										
										
										
											2013-08-31 03:35:49 +02:00
										 |  |  |     memset(s->codsty, 0, sizeof(s->codsty)); | 
					
						
							|  |  |  |     memset(s->qntsty, 0, sizeof(s->qntsty)); | 
					
						
							| 
									
										
										
										
											2013-06-01 14:33:34 +02:00
										 |  |  |     s->numXtiles = s->numYtiles = 0; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int jpeg2000_read_main_headers(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Jpeg2000CodingStyle *codsty = s->codsty; | 
					
						
							|  |  |  |     Jpeg2000QuantStyle *qntsty  = s->qntsty; | 
					
						
							|  |  |  |     uint8_t *properties         = s->properties; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         int len, ret = 0; | 
					
						
							|  |  |  |         uint16_t marker; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         int oldpos; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         if (bytestream2_get_bytes_left(&s->g) < 2) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             av_log(s->avctx, AV_LOG_ERROR, "Missing EOC\n"); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         marker = bytestream2_get_be16u(&s->g); | 
					
						
							|  |  |  |         oldpos = bytestream2_tell(&s->g); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         if (marker == JPEG2000_SOD) { | 
					
						
							| 
									
										
										
										
											2013-06-06 10:50:33 +02:00
										 |  |  |             Jpeg2000Tile *tile; | 
					
						
							|  |  |  |             Jpeg2000TilePart *tp; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:17:05 +03:00
										 |  |  |             if (!s->tile) { | 
					
						
							|  |  |  |                 av_log(s->avctx, AV_LOG_ERROR, "Missing SIZ\n"); | 
					
						
							|  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-09-18 10:04:43 +02:00
										 |  |  |             if (s->curtileno < 0) { | 
					
						
							|  |  |  |                 av_log(s->avctx, AV_LOG_ERROR, "Missing SOT\n"); | 
					
						
							|  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-06-06 10:50:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             tile = s->tile + s->curtileno; | 
					
						
							|  |  |  |             tp = tile->tile_part + tile->tp_idx; | 
					
						
							| 
									
										
										
										
											2013-06-21 00:31:00 +02:00
										 |  |  |             if (tp->tp_end < s->g.buffer) { | 
					
						
							|  |  |  |                 av_log(s->avctx, AV_LOG_ERROR, "Invalid tpend\n"); | 
					
						
							|  |  |  |                 return AVERROR_INVALIDDATA; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |             bytestream2_init(&tp->tpg, s->g.buffer, tp->tp_end - s->g.buffer); | 
					
						
							|  |  |  |             bytestream2_skip(&s->g, tp->tp_end - s->g.buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         if (marker == JPEG2000_EOC) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-14 19:20:10 +02:00
										 |  |  |         len = bytestream2_get_be16(&s->g); | 
					
						
							|  |  |  |         if (len < 2 || bytestream2_get_bytes_left(&s->g) < len - 2) | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |             return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         switch (marker) { | 
					
						
							|  |  |  |         case JPEG2000_SIZ: | 
					
						
							|  |  |  |             ret = get_siz(s); | 
					
						
							| 
									
										
										
										
											2013-05-22 03:17:35 +02:00
										 |  |  |             if (!s->tile) | 
					
						
							|  |  |  |                 s->numXtiles = s->numYtiles = 0; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case JPEG2000_COC: | 
					
						
							|  |  |  |             ret = get_coc(s, codsty, properties); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case JPEG2000_COD: | 
					
						
							|  |  |  |             ret = get_cod(s, codsty, properties); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case JPEG2000_QCC: | 
					
						
							|  |  |  |             ret = get_qcc(s, len, qntsty, properties); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case JPEG2000_QCD: | 
					
						
							|  |  |  |             ret = get_qcd(s, len, qntsty, properties); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case JPEG2000_SOT: | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |             if (!(ret = get_sot(s, len))) { | 
					
						
							| 
									
										
										
										
											2013-06-03 14:37:16 +02:00
										 |  |  |                 av_assert1(s->curtileno >= 0); | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |                 codsty = s->tile[s->curtileno].codsty; | 
					
						
							|  |  |  |                 qntsty = s->tile[s->curtileno].qntsty; | 
					
						
							|  |  |  |                 properties = s->tile[s->curtileno].properties; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case JPEG2000_COM: | 
					
						
							|  |  |  |             // the comment is ignored
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |             bytestream2_skip(&s->g, len - 2); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case JPEG2000_TLM: | 
					
						
							|  |  |  |             // Tile-part lengths
 | 
					
						
							|  |  |  |             ret = get_tlm(s, len); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2015-06-09 15:16:46 +02:00
										 |  |  |         case JPEG2000_PLT: | 
					
						
							|  |  |  |             // Packet length, tile-part header
 | 
					
						
							|  |  |  |             ret = get_plt(s, len); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         default: | 
					
						
							|  |  |  |             av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							| 
									
										
										
										
											2014-03-13 12:13:33 +01:00
										 |  |  |                    "unsupported marker 0x%.4"PRIX16" at pos 0x%X\n", | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |                    marker, bytestream2_tell(&s->g) - 4); | 
					
						
							|  |  |  |             bytestream2_skip(&s->g, len - 2); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         if (bytestream2_tell(&s->g) - oldpos != len || ret) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             av_log(s->avctx, AV_LOG_ERROR, | 
					
						
							| 
									
										
										
										
											2014-03-13 12:13:33 +01:00
										 |  |  |                    "error during processing marker segment %.4"PRIx16"\n", | 
					
						
							|  |  |  |                    marker); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |             return ret ? ret : -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Read bit stream packets --> T2 operation. */ | 
					
						
							|  |  |  | static int jpeg2000_read_bitstream_packets(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     int tileno; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++) { | 
					
						
							|  |  |  |         Jpeg2000Tile *tile = s->tile + tileno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (ret = init_tile(s, tileno)) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         s->g = tile->tile_part[0].tpg; | 
					
						
							|  |  |  |         if (ret = jpeg2000_decode_packets(s, tile)) | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int jp2_find_codestream(Jpeg2000DecoderContext *s) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |     uint32_t atom_size, atom, atom_end; | 
					
						
							|  |  |  |     int search_range = 10; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |     while (search_range | 
					
						
							| 
									
										
										
										
											2013-07-03 12:54:01 +02:00
										 |  |  |            && | 
					
						
							|  |  |  |            bytestream2_get_bytes_left(&s->g) >= 8) { | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |         atom_size = bytestream2_get_be32u(&s->g); | 
					
						
							|  |  |  |         atom      = bytestream2_get_be32u(&s->g); | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |         atom_end  = bytestream2_tell(&s->g) + atom_size - 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (atom == JP2_CODESTREAM) | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (bytestream2_get_bytes_left(&s->g) < atom_size || atom_end < atom_size) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (atom == JP2_HEADER && | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |                    atom_size >= 16) { | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |             uint32_t atom2_size, atom2, atom2_end; | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |             do { | 
					
						
							|  |  |  |                 atom2_size = bytestream2_get_be32u(&s->g); | 
					
						
							|  |  |  |                 atom2      = bytestream2_get_be32u(&s->g); | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |                 atom2_end  = bytestream2_tell(&s->g) + atom2_size - 8; | 
					
						
							|  |  |  |                 if (atom2_size < 8 || atom2_end > atom_end || atom2_end < atom2_size) | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 if (atom2 == JP2_CODESTREAM) { | 
					
						
							|  |  |  |                     return 1; | 
					
						
							|  |  |  |                 } else if (atom2 == MKBETAG('c','o','l','r') && atom2_size >= 7) { | 
					
						
							|  |  |  |                     int method = bytestream2_get_byteu(&s->g); | 
					
						
							|  |  |  |                     bytestream2_skipu(&s->g, 2); | 
					
						
							|  |  |  |                     if (method == 1) { | 
					
						
							|  |  |  |                         s->colour_space = bytestream2_get_be32u(&s->g); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else if (atom2 == MKBETAG('p','c','l','r') && atom2_size >= 6) { | 
					
						
							|  |  |  |                     int i, size, colour_count, colour_channels, colour_depth[3]; | 
					
						
							|  |  |  |                     uint32_t r, g, b; | 
					
						
							|  |  |  |                     colour_count = bytestream2_get_be16u(&s->g); | 
					
						
							|  |  |  |                     colour_channels = bytestream2_get_byteu(&s->g); | 
					
						
							|  |  |  |                     // FIXME: Do not ignore channel_sign
 | 
					
						
							|  |  |  |                     colour_depth[0] = (bytestream2_get_byteu(&s->g) & 0x7f) + 1; | 
					
						
							|  |  |  |                     colour_depth[1] = (bytestream2_get_byteu(&s->g) & 0x7f) + 1; | 
					
						
							|  |  |  |                     colour_depth[2] = (bytestream2_get_byteu(&s->g) & 0x7f) + 1; | 
					
						
							|  |  |  |                     size = (colour_depth[0] + 7 >> 3) * colour_count + | 
					
						
							|  |  |  |                            (colour_depth[1] + 7 >> 3) * colour_count + | 
					
						
							|  |  |  |                            (colour_depth[2] + 7 >> 3) * colour_count; | 
					
						
							|  |  |  |                     if (colour_count > 256   || | 
					
						
							|  |  |  |                         colour_channels != 3 || | 
					
						
							|  |  |  |                         colour_depth[0] > 16 || | 
					
						
							|  |  |  |                         colour_depth[1] > 16 || | 
					
						
							|  |  |  |                         colour_depth[2] > 16 || | 
					
						
							|  |  |  |                         atom2_size < size) { | 
					
						
							|  |  |  |                         avpriv_request_sample(s->avctx, "Unknown palette"); | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |                         bytestream2_seek(&s->g, atom2_end, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |                         continue; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     s->pal8 = 1; | 
					
						
							|  |  |  |                     for (i = 0; i < colour_count; i++) { | 
					
						
							|  |  |  |                         if (colour_depth[0] <= 8) { | 
					
						
							|  |  |  |                             r = bytestream2_get_byteu(&s->g) << 8 - colour_depth[0]; | 
					
						
							|  |  |  |                             r |= r >> colour_depth[0]; | 
					
						
							|  |  |  |                         } else { | 
					
						
							|  |  |  |                             r = bytestream2_get_be16u(&s->g) >> colour_depth[0] - 8; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if (colour_depth[1] <= 8) { | 
					
						
							|  |  |  |                             g = bytestream2_get_byteu(&s->g) << 8 - colour_depth[1]; | 
					
						
							|  |  |  |                             r |= r >> colour_depth[1]; | 
					
						
							|  |  |  |                         } else { | 
					
						
							|  |  |  |                             g = bytestream2_get_be16u(&s->g) >> colour_depth[1] - 8; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if (colour_depth[2] <= 8) { | 
					
						
							|  |  |  |                             b = bytestream2_get_byteu(&s->g) << 8 - colour_depth[2]; | 
					
						
							|  |  |  |                             r |= r >> colour_depth[2]; | 
					
						
							|  |  |  |                         } else { | 
					
						
							|  |  |  |                             b = bytestream2_get_be16u(&s->g) >> colour_depth[2] - 8; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         s->palette[i] = 0xffu << 24 | r << 16 | g << 8 | b; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |                 } else if (atom2 == MKBETAG('c','d','e','f') && atom2_size >= 2) { | 
					
						
							| 
									
										
										
										
											2013-07-08 00:57:32 +02:00
										 |  |  |                     int n = bytestream2_get_be16u(&s->g); | 
					
						
							|  |  |  |                     for (; n>0; n--) { | 
					
						
							|  |  |  |                         int cn   = bytestream2_get_be16(&s->g); | 
					
						
							| 
									
										
										
										
											2013-07-19 17:54:57 +02:00
										 |  |  |                         int av_unused typ  = bytestream2_get_be16(&s->g); | 
					
						
							| 
									
										
										
										
											2013-07-08 00:57:32 +02:00
										 |  |  |                         int asoc = bytestream2_get_be16(&s->g); | 
					
						
							| 
									
										
										
										
											2015-05-13 15:15:55 +02:00
										 |  |  |                         if (cn < 4 && asoc < 4) | 
					
						
							| 
									
										
										
										
											2013-07-08 00:57:32 +02:00
										 |  |  |                             s->cdef[cn] = asoc; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |                 bytestream2_seek(&s->g, atom2_end, SEEK_SET); | 
					
						
							|  |  |  |             } while (atom_end - atom2_end >= 8); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             search_range--; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-23 21:59:01 +02:00
										 |  |  |         bytestream2_seek(&s->g, atom_end, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  | static av_cold int jpeg2000_decode_init(AVCodecContext *avctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Jpeg2000DecoderContext *s = avctx->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ff_jpeg2000dsp_init(&s->dsp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | static int jpeg2000_decode_frame(AVCodecContext *avctx, void *data, | 
					
						
							|  |  |  |                                  int *got_frame, AVPacket *avpkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Jpeg2000DecoderContext *s = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2013-04-22 18:49:11 +02:00
										 |  |  |     ThreadFrame frame = { .f = data }; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     AVFrame *picture = data; | 
					
						
							|  |  |  |     int tileno, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->avctx     = avctx; | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     bytestream2_init(&s->g, avpkt->data, avpkt->size); | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     s->curtileno = -1; | 
					
						
							| 
									
										
										
										
											2013-07-08 00:57:32 +02:00
										 |  |  |     memset(s->cdef, -1, sizeof(s->cdef)); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) < 2) { | 
					
						
							| 
									
										
										
										
											2013-07-03 12:16:24 +02:00
										 |  |  |         ret = AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // check if the image is in jp2 format
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_bytes_left(&s->g) >= 12 && | 
					
						
							|  |  |  |        (bytestream2_get_be32u(&s->g) == 12) && | 
					
						
							|  |  |  |        (bytestream2_get_be32u(&s->g) == JP2_SIG_TYPE) && | 
					
						
							|  |  |  |        (bytestream2_get_be32u(&s->g) == JP2_SIG_VALUE)) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         if (!jp2_find_codestream(s)) { | 
					
						
							|  |  |  |             av_log(avctx, AV_LOG_ERROR, | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:01 +02:00
										 |  |  |                    "Could not find Jpeg2000 codestream atom.\n"); | 
					
						
							| 
									
										
										
										
											2013-07-03 12:16:24 +02:00
										 |  |  |             ret = AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         bytestream2_seek(&s->g, 0, SEEK_SET); | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-23 04:12:04 +02:00
										 |  |  |     while (bytestream2_get_bytes_left(&s->g) >= 3 && bytestream2_peek_be16(&s->g) != JPEG2000_SOC) | 
					
						
							|  |  |  |         bytestream2_skip(&s->g, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     if (bytestream2_get_be16u(&s->g) != JPEG2000_SOC) { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |         av_log(avctx, AV_LOG_ERROR, "SOC marker not present\n"); | 
					
						
							| 
									
										
										
										
											2013-07-03 12:16:24 +02:00
										 |  |  |         ret = AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (ret = jpeg2000_read_main_headers(s)) | 
					
						
							| 
									
										
										
										
											2013-05-06 22:27:33 +02:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* get picture buffer */ | 
					
						
							| 
									
										
										
										
											2013-06-03 00:19:37 +00:00
										 |  |  |     if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0) | 
					
						
							| 
									
										
										
										
											2013-05-06 22:27:33 +02:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     picture->pict_type = AV_PICTURE_TYPE_I; | 
					
						
							|  |  |  |     picture->key_frame = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ret = jpeg2000_read_bitstream_packets(s)) | 
					
						
							| 
									
										
										
										
											2013-05-06 22:27:33 +02:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++) | 
					
						
							|  |  |  |         if (ret = jpeg2000_decode_tile(s, s->tile + tileno, picture)) | 
					
						
							| 
									
										
										
										
											2013-05-06 22:27:33 +02:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2013-05-31 02:12:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     jpeg2000_dec_cleanup(s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *got_frame = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-18 10:56:15 +02:00
										 |  |  |     if (s->avctx->pix_fmt == AV_PIX_FMT_PAL8) | 
					
						
							|  |  |  |         memcpy(picture->data[1], s->palette, 256 * sizeof(uint32_t)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 01:23:56 +02:00
										 |  |  |     return bytestream2_tell(&s->g); | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-06 22:27:33 +02:00
										 |  |  | end: | 
					
						
							| 
									
										
										
										
											2013-05-06 22:06:15 +02:00
										 |  |  |     jpeg2000_dec_cleanup(s); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-13 05:38:44 -07:00
										 |  |  | static av_cold void jpeg2000_init_static_data(AVCodec *codec) | 
					
						
							| 
									
										
										
										
											2013-05-06 22:42:27 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     ff_jpeg2000_init_tier1_luts(); | 
					
						
							| 
									
										
										
										
											2013-07-12 23:01:43 +02:00
										 |  |  |     ff_mqc_init_context_tables(); | 
					
						
							| 
									
										
										
										
											2013-05-06 22:42:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | #define OFFSET(x) offsetof(Jpeg2000DecoderContext, x)
 | 
					
						
							|  |  |  | #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const AVOption options[] = { | 
					
						
							|  |  |  |     { "lowres",  "Lower the decoding resolution by a power of two", | 
					
						
							| 
									
										
										
										
											2013-07-01 10:01:20 +02:00
										 |  |  |         OFFSET(reduction_factor), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, JPEG2000_MAX_RESLEVELS - 1, VD }, | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     { NULL }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const AVProfile profiles[] = { | 
					
						
							|  |  |  |     { FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_0,  "JPEG 2000 codestream restriction 0"   }, | 
					
						
							|  |  |  |     { FF_PROFILE_JPEG2000_CSTREAM_RESTRICTION_1,  "JPEG 2000 codestream restriction 1"   }, | 
					
						
							|  |  |  |     { FF_PROFILE_JPEG2000_CSTREAM_NO_RESTRICTION, "JPEG 2000 no codestream restrictions" }, | 
					
						
							|  |  |  |     { FF_PROFILE_JPEG2000_DCINEMA_2K,             "JPEG 2000 digital cinema 2K"          }, | 
					
						
							|  |  |  |     { FF_PROFILE_JPEG2000_DCINEMA_4K,             "JPEG 2000 digital cinema 4K"          }, | 
					
						
							|  |  |  |     { FF_PROFILE_UNKNOWN }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-30 13:46:27 +02:00
										 |  |  | static const AVClass jpeg2000_class = { | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  |     .class_name = "jpeg2000", | 
					
						
							|  |  |  |     .item_name  = av_default_item_name, | 
					
						
							|  |  |  |     .option     = options, | 
					
						
							|  |  |  |     .version    = LIBAVUTIL_VERSION_INT, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AVCodec ff_jpeg2000_decoder = { | 
					
						
							| 
									
										
										
										
											2013-05-06 22:42:27 +02:00
										 |  |  |     .name             = "jpeg2000", | 
					
						
							|  |  |  |     .long_name        = NULL_IF_CONFIG_SMALL("JPEG 2000"), | 
					
						
							|  |  |  |     .type             = AVMEDIA_TYPE_VIDEO, | 
					
						
							|  |  |  |     .id               = AV_CODEC_ID_JPEG2000, | 
					
						
							|  |  |  |     .capabilities     = CODEC_CAP_FRAME_THREADS, | 
					
						
							|  |  |  |     .priv_data_size   = sizeof(Jpeg2000DecoderContext), | 
					
						
							|  |  |  |     .init_static_data = jpeg2000_init_static_data, | 
					
						
							| 
									
										
										
										
											2014-10-01 22:33:02 -03:00
										 |  |  |     .init             = jpeg2000_decode_init, | 
					
						
							| 
									
										
										
										
											2013-05-06 22:42:27 +02:00
										 |  |  |     .decode           = jpeg2000_decode_frame, | 
					
						
							| 
									
										
										
										
											2013-06-30 13:46:27 +02:00
										 |  |  |     .priv_class       = &jpeg2000_class, | 
					
						
							| 
									
										
										
										
											2013-05-27 22:55:14 +02:00
										 |  |  |     .max_lowres       = 5, | 
					
						
							| 
									
										
										
										
											2013-05-06 22:42:27 +02:00
										 |  |  |     .profiles         = NULL_IF_CONFIG_SMALL(profiles) | 
					
						
							| 
									
										
										
										
											2013-04-22 11:41:01 +02:00
										 |  |  | }; |