FFmpeg
Loading...
Searching...
No Matches
j2kenc.c
Go to the documentation of this file.
1/*
2 * JPEG2000 image encoder
3 * Copyright (c) 2007 Kamil Nowosad
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 *
21 * **********************************************************************************************************************
22 *
23 *
24 *
25 * This source code incorporates work covered by the following copyright and
26 * permission notice:
27 *
28 * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
29 * Copyright (c) 2002-2007, Professor Benoit Macq
30 * Copyright (c) 2001-2003, David Janssens
31 * Copyright (c) 2002-2003, Yannick Verschueren
32 * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
33 * Copyright (c) 2005, Herve Drolon, FreeImage Team
34 * Copyright (c) 2007, Callum Lerwick <seg@haxxed.com>
35 * Copyright (c) 2020, Gautam Ramakrishnan <gautamramk@gmail.com>
36 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 *
47 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
48 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
51 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
52 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
53 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
54 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
55 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
56 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
57 * POSSIBILITY OF SUCH DAMAGE.
58 */
59
60
61/**
62 * JPEG2000 image encoder
63 * @file
64 * @author Kamil Nowosad
65 */
66
67#include <float.h>
68#include "avcodec.h"
69#include "codec_internal.h"
70#include "encode.h"
71#include "bytestream.h"
72#include "jpeg2000.h"
73#include "version.h"
75#include "libavutil/common.h"
76#include "libavutil/mem.h"
77#include "libavutil/pixdesc.h"
78#include "libavutil/opt.h"
80#include "libavutil/avstring.h"
81#include "libavutil/thread.h"
82
83#define NMSEDEC_BITS 7
84#define NMSEDEC_FRACBITS (NMSEDEC_BITS-1)
85#define WMSEDEC_SHIFT 13 ///< must be >= 13
86#define LAMBDA_SCALE (100000000LL << (WMSEDEC_SHIFT - 13))
87
88#define CODEC_JP2 1
89#define CODEC_J2K 0
90
95
96static const int dwt_norms[2][4][10] = { // [dwt_type][band][rlevel] (multiplied by 10000)
97 {{10000, 19650, 41770, 84030, 169000, 338400, 676900, 1353000, 2706000, 5409000},
98 {20220, 39890, 83550, 170400, 342700, 686300, 1373000, 2746000, 5490000},
99 {20220, 39890, 83550, 170400, 342700, 686300, 1373000, 2746000, 5490000},
100 {20800, 38650, 83070, 171800, 347100, 695900, 1393000, 2786000, 5572000}},
101
102 {{10000, 15000, 27500, 53750, 106800, 213400, 426700, 853300, 1707000, 3413000},
103 {10380, 15920, 29190, 57030, 113300, 226400, 452500, 904800, 1809000},
104 {10380, 15920, 29190, 57030, 113300, 226400, 452500, 904800, 1809000},
105 { 7186, 9218, 15860, 30430, 60190, 120100, 240000, 479700, 959300}}
106};
107
108typedef struct {
110 double *layer_rates;
112
113typedef struct {
114 AVClass *class;
117
118 int width, height; ///< image width and height
119 uint8_t cbps[4]; ///< bits per sample in particular components
120 uint8_t comp_remap[4];
122 uint8_t planar;
124 int tile_width, tile_height; ///< tile size
126
127 uint8_t *buf_start;
128 uint8_t *buf;
129 uint8_t *buf_end;
131
132 uint64_t lambda;
133
136
138 int layer_rates[100];
139 uint8_t compression_rate_enc; ///< Is compression done using compression ratio?
140
142 int pred;
143 int sop;
144 int eph;
145 int prog;
147 char *lr_str;
149
150
151/* bitstream routines */
152
153/** put n times val bit */
154static void put_bits(Jpeg2000EncoderContext *s, int val, int n) // TODO: optimize
155{
156 val <<= 7;
157 while (n-- > 0){
158 if (s->bit_index == 8)
159 {
160 s->bit_index = *s->buf == 0xff;
161 *(++s->buf) = 0;
162 }
163 *s->buf |= val >> s->bit_index++;
164 }
165}
166
167/** put n least significant bits of a number num */
168static void put_num(Jpeg2000EncoderContext *s, int num, int n)
169{
170 while(--n >= 0)
171 put_bits(s, (num >> n) & 1, 1);
172}
173
174/** flush the bitstream */
176{
177 if (s->bit_index){
178 s->bit_index = 0;
179 if (*s->buf == 0xff)
180 *(++s->buf) = 0;
181 s->buf++;
182 }
183}
184
185/* tag tree routines */
186
187/** code the value stored in node */
188static void tag_tree_code(Jpeg2000EncoderContext *s, Jpeg2000TgtNode *node, int threshold)
189{
190 Jpeg2000TgtNode *stack[30];
191 int sp = -1, curval = 0;
192
193 while(node->parent){
194 stack[++sp] = node;
195 node = node->parent;
196 }
197
198 while (1) {
199 if (curval > node->temp_val)
200 node->temp_val = curval;
201 else {
202 curval = node->temp_val;
203 }
204
205 if (node->val >= threshold) {
206 put_bits(s, 0, threshold - curval);
207 curval = threshold;
208 } else {
209 put_bits(s, 0, node->val - curval);
210 curval = node->val;
211 if (!node->vis) {
212 put_bits(s, 1, 1);
213 node->vis = 1;
214 }
215 }
216
217 node->temp_val = curval;
218 if (sp < 0)
219 break;
220 node = stack[sp--];
221 }
222}
223
224/** update the value in node */
226{
227 while (node->parent){
228 if (node->parent->val <= node->val)
229 break;
230 node->parent->val = node->val;
231 node = node->parent;
232 }
233}
234
236{
237 int i;
238
239 if (s->buf_end - s->buf < 40 + 3 * s->ncomponents)
240 return -1;
241
242 bytestream_put_be16(&s->buf, JPEG2000_SIZ);
243 bytestream_put_be16(&s->buf, 38 + 3 * s->ncomponents); // Lsiz
244 bytestream_put_be16(&s->buf, 0); // Rsiz
245 bytestream_put_be32(&s->buf, s->width); // width
246 bytestream_put_be32(&s->buf, s->height); // height
247 bytestream_put_be32(&s->buf, 0); // X0Siz
248 bytestream_put_be32(&s->buf, 0); // Y0Siz
249
250 bytestream_put_be32(&s->buf, s->tile_width); // XTSiz
251 bytestream_put_be32(&s->buf, s->tile_height); // YTSiz
252 bytestream_put_be32(&s->buf, 0); // XT0Siz
253 bytestream_put_be32(&s->buf, 0); // YT0Siz
254 bytestream_put_be16(&s->buf, s->ncomponents); // CSiz
255
256 for (i = 0; i < s->ncomponents; i++){ // Ssiz_i XRsiz_i, YRsiz_i
257 bytestream_put_byte(&s->buf, s->cbps[i] - 1);
258 bytestream_put_byte(&s->buf, (i+1&2)?1<<s->chroma_shift[0]:1);
259 bytestream_put_byte(&s->buf, (i+1&2)?1<<s->chroma_shift[1]:1);
260 }
261 return 0;
262}
263
265{
266 Jpeg2000CodingStyle *codsty = &s->codsty;
267 uint8_t scod = 0;
268
269 if (s->buf_end - s->buf < 14)
270 return -1;
271
272 bytestream_put_be16(&s->buf, JPEG2000_COD);
273 bytestream_put_be16(&s->buf, 12); // Lcod
274 if (s->sop)
275 scod |= JPEG2000_CSTY_SOP;
276 if (s->eph)
277 scod |= JPEG2000_CSTY_EPH;
278 bytestream_put_byte(&s->buf, scod); // Scod
279 // SGcod
280 bytestream_put_byte(&s->buf, s->prog); // progression level
281 bytestream_put_be16(&s->buf, s->nlayers); // num of layers
282 if(s->avctx->pix_fmt == AV_PIX_FMT_YUV444P){
283 bytestream_put_byte(&s->buf, 0); // unspecified
284 }else{
285 bytestream_put_byte(&s->buf, 0); // unspecified
286 }
287 // SPcod
288 bytestream_put_byte(&s->buf, codsty->nreslevels - 1); // num of decomp. levels
289 bytestream_put_byte(&s->buf, codsty->log2_cblk_width-2); // cblk width
290 bytestream_put_byte(&s->buf, codsty->log2_cblk_height-2); // cblk height
291 bytestream_put_byte(&s->buf, 0); // cblk style
292 bytestream_put_byte(&s->buf, codsty->transform == FF_DWT53); // transformation
293 return 0;
294}
295
296static int put_qcd(Jpeg2000EncoderContext *s, int compno)
297{
298 int i, size;
299 Jpeg2000CodingStyle *codsty = &s->codsty;
300 Jpeg2000QuantStyle *qntsty = &s->qntsty;
301
302 if (qntsty->quantsty == JPEG2000_QSTY_NONE)
303 size = 4 + 3 * (codsty->nreslevels-1);
304 else // QSTY_SE
305 size = 5 + 6 * (codsty->nreslevels-1);
306
307 if (s->buf_end - s->buf < size + 2)
308 return -1;
309
310 bytestream_put_be16(&s->buf, JPEG2000_QCD);
311 bytestream_put_be16(&s->buf, size); // LQcd
312 bytestream_put_byte(&s->buf, (qntsty->nguardbits << 5) | qntsty->quantsty); // Sqcd
313 if (qntsty->quantsty == JPEG2000_QSTY_NONE)
314 for (i = 0; i < codsty->nreslevels * 3 - 2; i++)
315 bytestream_put_byte(&s->buf, qntsty->expn[i] << 3);
316 else // QSTY_SE
317 for (i = 0; i < codsty->nreslevels * 3 - 2; i++)
318 bytestream_put_be16(&s->buf, (qntsty->expn[i] << 11) | qntsty->mant[i]);
319 return 0;
320}
321
322static int put_com(Jpeg2000EncoderContext *s, int compno)
323{
324 int size = 4 + strlen(LIBAVCODEC_IDENT);
325
326 if (s->avctx->flags & AV_CODEC_FLAG_BITEXACT)
327 return 0;
328
329 if (s->buf_end - s->buf < size + 2)
330 return -1;
331
332 bytestream_put_be16(&s->buf, JPEG2000_COM);
333 bytestream_put_be16(&s->buf, size);
334 bytestream_put_be16(&s->buf, 1); // General use (ISO/IEC 8859-15 (Latin) values)
335
337
338 return 0;
339}
340
341static uint8_t *put_sot(Jpeg2000EncoderContext *s, int tileno)
342{
343 uint8_t *psotptr;
344
345 if (s->buf_end - s->buf < 12)
346 return NULL;
347
348 bytestream_put_be16(&s->buf, JPEG2000_SOT);
349 bytestream_put_be16(&s->buf, 10); // Lsot
350 bytestream_put_be16(&s->buf, tileno); // Isot
351
352 psotptr = s->buf;
353 bytestream_put_be32(&s->buf, 0); // Psot (filled in later)
354
355 bytestream_put_byte(&s->buf, 0); // TPsot
356 bytestream_put_byte(&s->buf, 1); // TNsot
357 return psotptr;
358}
359
361{
362 int i, j;
363 int layno, compno;
364 for (i = 0; i < s->numYtiles; i++) {
365 for (j = 0; j < s->numXtiles; j++) {
366 Jpeg2000Tile *tile = &s->tile[s->numXtiles * i + j];
367 for (compno = 0; compno < s->ncomponents; compno++) {
368 int tilew = tile->comp[compno].coord[0][1] - tile->comp[compno].coord[0][0];
369 int tileh = tile->comp[compno].coord[1][1] - tile->comp[compno].coord[1][0];
370 int scale = ((compno+1&2)?1 << s->chroma_shift[0]:1) * ((compno+1&2)?1 << s->chroma_shift[1]:1);
371 for (layno = 0; layno < s->nlayers; layno++) {
372 if (s->layer_rates[layno] > 0) {
373 tile->layer_rates[layno] += (double)(tilew * tileh) * s->ncomponents * s->cbps[compno] /
374 (double)(s->layer_rates[layno] * 8 * scale);
375 } else {
376 tile->layer_rates[layno] = 0.0;
377 }
378 }
379 }
380 }
381 }
382
383}
384
385/**
386 * compute the sizes of tiles, resolution levels, bands, etc.
387 * allocate memory for them
388 * divide the input image into tile-components
389 */
391{
392 int tileno, tilex, tiley, compno;
393 Jpeg2000CodingStyle *codsty = &s->codsty;
394 Jpeg2000QuantStyle *qntsty = &s->qntsty;
395
396 s->numXtiles = ff_jpeg2000_ceildiv(s->width, s->tile_width);
397 s->numYtiles = ff_jpeg2000_ceildiv(s->height, s->tile_height);
398
399 s->tile = av_calloc(s->numXtiles, s->numYtiles * sizeof(Jpeg2000Tile));
400 if (!s->tile)
401 return AVERROR(ENOMEM);
402 for (tileno = 0, tiley = 0; tiley < s->numYtiles; tiley++)
403 for (tilex = 0; tilex < s->numXtiles; tilex++, tileno++){
404 Jpeg2000Tile *tile = s->tile + tileno;
405
406 tile->comp = av_calloc(s->ncomponents, sizeof(*tile->comp));
407 if (!tile->comp)
408 return AVERROR(ENOMEM);
409
410 tile->layer_rates = av_calloc(s->nlayers, sizeof(*tile->layer_rates));
411 if (!tile->layer_rates)
412 return AVERROR(ENOMEM);
413
414 for (compno = 0; compno < s->ncomponents; compno++){
415 Jpeg2000Component *comp = tile->comp + compno;
416 int ret, i, j;
417
418 comp->coord[0][0] = comp->coord_o[0][0] = tilex * s->tile_width;
419 comp->coord[0][1] = comp->coord_o[0][1] = FFMIN((tilex+1)*s->tile_width, s->width);
420 comp->coord[1][0] = comp->coord_o[1][0] = tiley * s->tile_height;
421 comp->coord[1][1] = comp->coord_o[1][1] = FFMIN((tiley+1)*s->tile_height, s->height);
422 if (compno + 1 & 2)
423 for (i = 0; i < 2; i++)
424 for (j = 0; j < 2; j++)
425 comp->coord[i][j] = comp->coord_o[i][j] = ff_jpeg2000_ceildivpow2(comp->coord[i][j], s->chroma_shift[i]);
426
428 codsty,
429 qntsty,
430 s->cbps[compno],
431 (compno+1&2)?1<<s->chroma_shift[0]:1,
432 (compno+1&2)?1<<s->chroma_shift[1]:1,
433 s->avctx
434 )) < 0)
435 return ret;
436 }
437 }
439 return 0;
440}
441
442#define COPY_FRAME(D, PIXEL) \
443 static void copy_frame_ ##D(Jpeg2000EncoderContext *s) \
444 { \
445 int tileno, compno, i, y, x; \
446 const PIXEL *line; \
447 for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++){ \
448 Jpeg2000Tile *tile = s->tile + tileno; \
449 if (s->planar){ \
450 for (compno = 0; compno < s->ncomponents; compno++){ \
451 int icompno = s->comp_remap[compno]; \
452 Jpeg2000Component *comp = tile->comp + compno; \
453 int *dst = comp->i_data; \
454 int cbps = s->cbps[compno]; \
455 line = (const PIXEL*)s->picture->data[icompno] \
456 + comp->coord[1][0] * (s->picture->linesize[icompno] / sizeof(PIXEL)) \
457 + comp->coord[0][0]; \
458 for (y = comp->coord[1][0]; y < comp->coord[1][1]; y++){ \
459 const PIXEL *ptr = line; \
460 for (x = comp->coord[0][0]; x < comp->coord[0][1]; x++) \
461 *dst++ = *ptr++ - (1 << (cbps - 1)); \
462 line += s->picture->linesize[icompno] / sizeof(PIXEL); \
463 } \
464 } \
465 } else{ \
466 line = (const PIXEL*)(s->picture->data[0] + tile->comp[0].coord[1][0] * s->picture->linesize[0]) \
467 + tile->comp[0].coord[0][0] * s->ncomponents; \
468 \
469 i = 0; \
470 for (y = tile->comp[0].coord[1][0]; y < tile->comp[0].coord[1][1]; y++){ \
471 const PIXEL *ptr = line; \
472 for (x = tile->comp[0].coord[0][0]; x < tile->comp[0].coord[0][1]; x++, i++){ \
473 for (compno = 0; compno < s->ncomponents; compno++){ \
474 int cbps = s->cbps[compno]; \
475 tile->comp[compno].i_data[i] = *ptr++ - (1 << (cbps - 1)); \
476 } \
477 } \
478 line += s->picture->linesize[0] / sizeof(PIXEL); \
479 } \
480 } \
481 } \
482 }
483
484COPY_FRAME(8, uint8_t)
485COPY_FRAME(16, uint16_t)
486
488{
489 int compno, reslevelno, bandno;
490 Jpeg2000QuantStyle *qntsty = &s->qntsty;
491 Jpeg2000CodingStyle *codsty = &s->codsty;
492
493 for (compno = 0; compno < s->ncomponents; compno++){
494 int gbandno = 0;
495 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
496 int nbands, lev = codsty->nreslevels - reslevelno - 1;
497 nbands = reslevelno ? 3 : 1;
498 for (bandno = 0; bandno < nbands; bandno++, gbandno++){
499 int expn, mant = 0;
500
501 if (codsty->transform == FF_DWT97_INT){
502 int bandpos = bandno + (reslevelno>0),
503 ss = 81920000 / dwt_norms[0][bandpos][lev],
504 log = av_log2(ss);
505 mant = (11 - log < 0 ? ss >> log - 11 : ss << 11 - log) & 0x7ff;
506 expn = s->cbps[compno] - log + 13;
507 } else
508 expn = ((bandno&2)>>1) + (reslevelno>0) + s->cbps[compno];
509
510 qntsty->expn[gbandno] = expn;
511 qntsty->mant[gbandno] = mant;
512 }
513 }
514 }
515}
516
517static av_cold void init_luts(void)
518{
519 int i, a,
520 mask = ~((1<<NMSEDEC_FRACBITS)-1);
521
522 for (i = 0; i < (1 << NMSEDEC_BITS); i++){
523 lut_nmsedec_sig[i] = FFMAX((3 * i << (13 - NMSEDEC_FRACBITS)) - (9 << 11), 0);
524 lut_nmsedec_sig0[i] = FFMAX((i*i + (1<<NMSEDEC_FRACBITS-1) & mask) << 1, 0);
525
526 a = (i >> (NMSEDEC_BITS-2)&2) + 1;
527 lut_nmsedec_ref[i] = FFMAX((a - 2) * (i << (13 - NMSEDEC_FRACBITS)) +
528 (1 << 13) - (a * a << 11), 0);
529 lut_nmsedec_ref0[i] = FFMAX(((i * i - (i << NMSEDEC_BITS) + (1 << 2 * NMSEDEC_FRACBITS) + (1 << (NMSEDEC_FRACBITS - 1))) & mask)
530 << 1, 0);
531 }
533}
534
535/* tier-1 routines */
536static int getnmsedec_sig(int x, int bpno)
537{
538 if (bpno > NMSEDEC_FRACBITS)
539 return lut_nmsedec_sig[(x >> (bpno - NMSEDEC_FRACBITS)) & ((1 << NMSEDEC_BITS) - 1)];
540 return lut_nmsedec_sig0[x & ((1 << NMSEDEC_BITS) - 1)];
541}
542
543static int getnmsedec_ref(int x, int bpno)
544{
545 if (bpno > NMSEDEC_FRACBITS)
546 return lut_nmsedec_ref[(x >> (bpno - NMSEDEC_FRACBITS)) & ((1 << NMSEDEC_BITS) - 1)];
547 return lut_nmsedec_ref0[x & ((1 << NMSEDEC_BITS) - 1)];
548}
549
550static void encode_sigpass(Jpeg2000T1Context *t1, int width, int height, int bandno, int *nmsedec, int bpno)
551{
552 int y0, x, y, mask = 1 << (bpno + NMSEDEC_FRACBITS);
553 for (y0 = 0; y0 < height; y0 += 4)
554 for (x = 0; x < width; x++)
555 for (y = y0; y < height && y < y0+4; y++){
556 if (!(t1->flags[(y+1) * t1->stride + x+1] & JPEG2000_T1_SIG) && (t1->flags[(y+1) * t1->stride + x+1] & JPEG2000_T1_SIG_NB)){
557 int ctxno = ff_jpeg2000_getsigctxno(t1->flags[(y+1) * t1->stride + x+1], bandno),
558 bit = t1->data[(y) * t1->stride + x] & mask ? 1 : 0;
559 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + ctxno, bit);
560 if (bit){
561 int xorbit;
562 int ctxno = ff_jpeg2000_getsgnctxno(t1->flags[(y+1) * t1->stride + x+1], &xorbit);
563 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + ctxno, (t1->flags[(y+1) * t1->stride + x+1] >> 15) ^ xorbit);
564 *nmsedec += getnmsedec_sig(t1->data[(y) * t1->stride + x], bpno + NMSEDEC_FRACBITS);
565 ff_jpeg2000_set_significance(t1, x, y, t1->flags[(y+1) * t1->stride + x+1] >> 15);
566 }
567 t1->flags[(y+1) * t1->stride + x+1] |= JPEG2000_T1_VIS;
568 }
569 }
570}
571
572static void encode_refpass(Jpeg2000T1Context *t1, int width, int height, int *nmsedec, int bpno)
573{
574 int y0, x, y, mask = 1 << (bpno + NMSEDEC_FRACBITS);
575 for (y0 = 0; y0 < height; y0 += 4)
576 for (x = 0; x < width; x++)
577 for (y = y0; y < height && y < y0+4; y++)
578 if ((t1->flags[(y+1) * t1->stride + x+1] & (JPEG2000_T1_SIG | JPEG2000_T1_VIS)) == JPEG2000_T1_SIG){
579 int ctxno = ff_jpeg2000_getrefctxno(t1->flags[(y+1) * t1->stride + x+1]);
580 *nmsedec += getnmsedec_ref(t1->data[(y) * t1->stride + x], bpno + NMSEDEC_FRACBITS);
581 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + ctxno, t1->data[(y) * t1->stride + x] & mask ? 1:0);
582 t1->flags[(y+1) * t1->stride + x+1] |= JPEG2000_T1_REF;
583 }
584}
585
586static void encode_clnpass(Jpeg2000T1Context *t1, int width, int height, int bandno, int *nmsedec, int bpno)
587{
588 int y0, x, y, mask = 1 << (bpno + NMSEDEC_FRACBITS);
589 for (y0 = 0; y0 < height; y0 += 4)
590 for (x = 0; x < width; x++){
591 if (y0 + 3 < height && !(
592 (t1->flags[(y0+1) * t1->stride + x+1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG)) ||
593 (t1->flags[(y0+2) * t1->stride + x+1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG)) ||
594 (t1->flags[(y0+3) * t1->stride + x+1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG)) ||
595 (t1->flags[(y0+4) * t1->stride + x+1] & (JPEG2000_T1_SIG_NB | JPEG2000_T1_VIS | JPEG2000_T1_SIG))))
596 {
597 // aggregation mode
598 int rlen;
599 for (rlen = 0; rlen < 4; rlen++)
600 if (t1->data[(y0+rlen) * t1->stride + x] & mask)
601 break;
602 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + MQC_CX_RL, rlen != 4);
603 if (rlen == 4)
604 continue;
605 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + MQC_CX_UNI, rlen >> 1);
606 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + MQC_CX_UNI, rlen & 1);
607 for (y = y0 + rlen; y < y0 + 4; y++){
608 if (!(t1->flags[(y+1) * t1->stride + x+1] & (JPEG2000_T1_SIG | JPEG2000_T1_VIS))){
609 int ctxno = ff_jpeg2000_getsigctxno(t1->flags[(y+1) * t1->stride + x+1], bandno);
610 if (y > y0 + rlen)
611 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + ctxno, t1->data[(y) * t1->stride + x] & mask ? 1:0);
612 if (t1->data[(y) * t1->stride + x] & mask){ // newly significant
613 int xorbit;
614 int ctxno = ff_jpeg2000_getsgnctxno(t1->flags[(y+1) * t1->stride + x+1], &xorbit);
615 *nmsedec += getnmsedec_sig(t1->data[(y) * t1->stride + x], bpno + NMSEDEC_FRACBITS);
616 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + ctxno, (t1->flags[(y+1) * t1->stride + x+1] >> 15) ^ xorbit);
617 ff_jpeg2000_set_significance(t1, x, y, t1->flags[(y+1) * t1->stride + x+1] >> 15);
618 }
619 }
620 t1->flags[(y+1) * t1->stride + x+1] &= ~JPEG2000_T1_VIS;
621 }
622 } else{
623 for (y = y0; y < y0 + 4 && y < height; y++){
624 if (!(t1->flags[(y+1) * t1->stride + x+1] & (JPEG2000_T1_SIG | JPEG2000_T1_VIS))){
625 int ctxno = ff_jpeg2000_getsigctxno(t1->flags[(y+1) * t1->stride + x+1], bandno);
626 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + ctxno, t1->data[(y) * t1->stride + x] & mask ? 1:0);
627 if (t1->data[(y) * t1->stride + x] & mask){ // newly significant
628 int xorbit;
629 int ctxno = ff_jpeg2000_getsgnctxno(t1->flags[(y+1) * t1->stride + x+1], &xorbit);
630 *nmsedec += getnmsedec_sig(t1->data[(y) * t1->stride + x], bpno + NMSEDEC_FRACBITS);
631 ff_mqc_encode(&t1->mqc, t1->mqc.cx_states + ctxno, (t1->flags[(y+1) * t1->stride + x+1] >> 15) ^ xorbit);
632 ff_jpeg2000_set_significance(t1, x, y, t1->flags[(y+1) * t1->stride + x+1] >> 15);
633 }
634 }
635 t1->flags[(y+1) * t1->stride + x+1] &= ~JPEG2000_T1_VIS;
636 }
637 }
638 }
639}
640
642 int width, int height, int bandpos, int lev)
643{
644 int pass_t = 2, passno, x, y, max=0, nmsedec, bpno;
645 int64_t wmsedec = 0;
646
647 memset(t1->flags, 0, t1->stride * (height + 2) * sizeof(*t1->flags));
648
649 for (y = 0; y < height; y++){
650 for (x = 0; x < width; x++){
651 if (t1->data[(y) * t1->stride + x] < 0){
652 t1->flags[(y+1) * t1->stride + x+1] |= JPEG2000_T1_SGN;
653 t1->data[(y) * t1->stride + x] = -t1->data[(y) * t1->stride + x];
654 }
655 max = FFMAX(max, t1->data[(y) * t1->stride + x]);
656 }
657 }
658
659 if (max == 0){
660 cblk->nonzerobits = 0;
661 } else{
663 }
664 bpno = cblk->nonzerobits - 1;
665
666 cblk->data[0] = 0;
667 ff_mqc_initenc(&t1->mqc, cblk->data + 1);
668
669 for (passno = 0; bpno >= 0; passno++){
670 nmsedec=0;
671
672 switch(pass_t){
673 case 0: encode_sigpass(t1, width, height, bandpos, &nmsedec, bpno);
674 break;
675 case 1: encode_refpass(t1, width, height, &nmsedec, bpno);
676 break;
677 case 2: encode_clnpass(t1, width, height, bandpos, &nmsedec, bpno);
678 break;
679 }
680
681 cblk->passes[passno].rate = ff_mqc_flush_to(&t1->mqc, cblk->passes[passno].flushed, &cblk->passes[passno].flushed_len);
682 cblk->passes[passno].rate -= cblk->passes[passno].flushed_len;
683
684 wmsedec += (int64_t)nmsedec << (2*bpno);
685 cblk->passes[passno].disto = wmsedec;
686
687 if (++pass_t == 3){
688 pass_t = 0;
689 bpno--;
690 }
691 }
692 cblk->npasses = passno;
693 cblk->ninclpasses = passno;
694
695 if (passno) {
696 cblk->passes[passno-1].rate = ff_mqc_flush_to(&t1->mqc, cblk->passes[passno-1].flushed, &cblk->passes[passno-1].flushed_len);
697 cblk->passes[passno-1].rate -= cblk->passes[passno-1].flushed_len;
698 }
699}
700
701/* tier-2 routines: */
702
704{
705 if (n == 1)
706 put_num(s, 0, 1);
707 else if (n == 2)
708 put_num(s, 2, 2);
709 else if (n <= 5)
710 put_num(s, 0xc | (n-3), 4);
711 else if (n <= 36)
712 put_num(s, 0x1e0 | (n-6), 9);
713 else
714 put_num(s, 0xff80 | (n-37), 16);
715}
716
717
719 int precno, const uint8_t *expn, int numgbits, int packetno,
720 int nlayers)
721{
722 int bandno, empty = 1;
723 int i;
724 if (s->sop) {
725 bytestream_put_be16(&s->buf, JPEG2000_SOP);
726 bytestream_put_be16(&s->buf, 4);
727 bytestream_put_be16(&s->buf, packetno);
728 }
729
730 // init bitstream
731 *s->buf = 0;
732 s->bit_index = 0;
733
734 // header
735
736 if (!layno) {
737 for (bandno = 0; bandno < rlevel->nbands; bandno++) {
738 Jpeg2000Band *band = rlevel->band + bandno;
739 if (band->coord[0][0] < band->coord[0][1]
740 && band->coord[1][0] < band->coord[1][1]) {
741 Jpeg2000Prec *prec = band->prec + precno;
742 int nb_cblks = prec->nb_codeblocks_height * prec->nb_codeblocks_width;
743 int pos;
746 for (pos = 0; pos < nb_cblks; pos++) {
747 Jpeg2000Cblk *cblk = &prec->cblk[pos];
748 prec->zerobits[pos].val = expn[bandno] + numgbits - 1 - cblk->nonzerobits;
749 cblk->incl = 0;
750 cblk->lblock = 3;
752 for (i = 0; i < nlayers; i++) {
753 if (cblk->layers[i].npasses > 0) {
754 prec->cblkincl[pos].val = i;
755 break;
756 }
757 }
758 if (i == nlayers)
759 prec->cblkincl[pos].val = i;
761 }
762 }
763 }
764 }
765
766 // is the packet empty?
767 for (bandno = 0; bandno < rlevel->nbands; bandno++){
768 Jpeg2000Band *band = rlevel->band + bandno;
769 if (band->coord[0][0] < band->coord[0][1]
770 && band->coord[1][0] < band->coord[1][1]) {
771 Jpeg2000Prec *prec = band->prec + precno;
772 int nb_cblks = prec->nb_codeblocks_height * prec->nb_codeblocks_width;
773 int pos;
774 for (pos = 0; pos < nb_cblks; pos++) {
775 Jpeg2000Cblk *cblk = &prec->cblk[pos];
776 if (cblk->layers[layno].npasses) {
777 empty = 0;
778 break;
779 }
780 }
781 if (!empty)
782 break;
783 }
784 }
785
786 if (s->buf_end - s->buf < 3)
787 return -1;
788
789 put_bits(s, !empty, 1);
790 if (empty){
791 j2k_flush(s);
792 if (s->eph)
793 bytestream_put_be16(&s->buf, JPEG2000_EPH);
794 return 0;
795 }
796
797 for (bandno = 0; bandno < rlevel->nbands; bandno++) {
798 Jpeg2000Band *band = rlevel->band + bandno;
799 Jpeg2000Prec *prec = band->prec + precno;
800 int yi, xi, pos;
801 int cblknw = prec->nb_codeblocks_width;
802
803 if (band->coord[0][0] == band->coord[0][1]
804 || band->coord[1][0] == band->coord[1][1])
805 continue;
806
807 for (pos=0, yi = 0; yi < prec->nb_codeblocks_height; yi++) {
808 for (xi = 0; xi < cblknw; xi++, pos++){
809 int llen = 0, length;
810 Jpeg2000Cblk *cblk = prec->cblk + yi * cblknw + xi;
811
812 if (s->buf_end - s->buf < 20) // approximately
813 return -1;
814
815 // inclusion information
816 if (!cblk->incl)
817 tag_tree_code(s, prec->cblkincl + pos, layno + 1);
818 else {
819 put_bits(s, cblk->layers[layno].npasses > 0, 1);
820 }
821
822 if (!cblk->layers[layno].npasses)
823 continue;
824
825 // zerobits information
826 if (!cblk->incl) {
827 tag_tree_code(s, prec->zerobits + pos, 100);
828 cblk->incl = 1;
829 }
830
831 // number of passes
832 putnumpasses(s, cblk->layers[layno].npasses);
833
834 length = cblk->layers[layno].data_len;
835 if (layno == nlayers - 1 && cblk->layers[layno].cum_passes){
836 length += cblk->passes[cblk->layers[layno].cum_passes-1].flushed_len;
837 }
838 if (cblk->lblock + av_log2(cblk->layers[layno].npasses) < av_log2(length) + 1) {
839 llen = av_log2(length) + 1 - cblk->lblock - av_log2(cblk->layers[layno].npasses);
840 }
841
842 // length of code block
843 cblk->lblock += llen;
844 put_bits(s, 1, llen);
845 put_bits(s, 0, 1);
846 put_num(s, length, cblk->lblock + av_log2(cblk->layers[layno].npasses));
847 }
848 }
849 }
850
851 if (s->buf_end - s->buf < 2 + 2 * s->eph)
852 return -1;
853
854 j2k_flush(s);
855 if (s->eph) {
856 bytestream_put_be16(&s->buf, JPEG2000_EPH);
857 }
858
859 for (bandno = 0; bandno < rlevel->nbands; bandno++) {
860 Jpeg2000Band *band = rlevel->band + bandno;
861 Jpeg2000Prec *prec = band->prec + precno;
862 int yi, cblknw = prec->nb_codeblocks_width;
863 for (yi =0; yi < prec->nb_codeblocks_height; yi++) {
864 int xi;
865 for (xi = 0; xi < cblknw; xi++){
866 Jpeg2000Cblk *cblk = prec->cblk + yi * cblknw + xi;
867 if (cblk->layers[layno].npasses) {
868 if (s->buf_end - s->buf < cblk->layers[layno].data_len + 2)
869 return -1;
870 bytestream_put_buffer(&s->buf, cblk->layers[layno].data_start + 1, cblk->layers[layno].data_len);
871 if (layno == nlayers - 1 && cblk->layers[layno].cum_passes) {
872 bytestream_put_buffer(&s->buf, cblk->passes[cblk->layers[layno].cum_passes-1].flushed,
873 cblk->passes[cblk->layers[layno].cum_passes-1].flushed_len);
874 }
875 }
876 }
877 }
878 }
879 return 0;
880}
881
882static int encode_packets(Jpeg2000EncoderContext *s, Jpeg2000Tile *tile, int tileno, int nlayers)
883{
884 int compno, reslevelno, layno, ret;
885 Jpeg2000CodingStyle *codsty = &s->codsty;
886 Jpeg2000QuantStyle *qntsty = &s->qntsty;
887 int packetno = 0;
888 int step_x, step_y;
889 int x, y;
890 int tile_coord[2][2];
891 int col = tileno % s->numXtiles;
892 int row = tileno / s->numXtiles;
893
894 tile_coord[0][0] = col * s->tile_width;
895 tile_coord[0][1] = FFMIN(tile_coord[0][0] + s->tile_width, s->width);
896 tile_coord[1][0] = row * s->tile_height;
897 tile_coord[1][1] = FFMIN(tile_coord[1][0] + s->tile_height, s->height);
898
899 av_log(s->avctx, AV_LOG_DEBUG, "tier2\n");
900 // lay-rlevel-comp-pos progression
901 switch (s->prog) {
903 for (layno = 0; layno < nlayers; layno++) {
904 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
905 for (compno = 0; compno < s->ncomponents; compno++){
906 int precno;
907 Jpeg2000ResLevel *reslevel = s->tile[tileno].comp[compno].reslevel + reslevelno;
908 for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++){
909 if ((ret = encode_packet(s, reslevel, layno, precno, qntsty->expn + (reslevelno ? 3*reslevelno-2 : 0),
910 qntsty->nguardbits, packetno++, nlayers)) < 0)
911 return ret;
912 }
913 }
914 }
915 }
916 break;
918 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
919 for (layno = 0; layno < nlayers; layno++) {
920 for (compno = 0; compno < s->ncomponents; compno++){
921 int precno;
922 Jpeg2000ResLevel *reslevel = s->tile[tileno].comp[compno].reslevel + reslevelno;
923 for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++){
924 if ((ret = encode_packet(s, reslevel, layno, precno, qntsty->expn + (reslevelno ? 3*reslevelno-2 : 0),
925 qntsty->nguardbits, packetno++, nlayers)) < 0)
926 return ret;
927 }
928 }
929 }
930 }
931 break;
933 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
934 int precno;
935 step_x = 30;
936 step_y = 30;
937 for (compno = 0; compno < s->ncomponents; compno++) {
938 Jpeg2000Component *comp = tile->comp + compno;
939 if (reslevelno < codsty->nreslevels) {
940 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
941 Jpeg2000ResLevel *rlevel = comp->reslevel + reslevelno;
942 step_x = FFMIN(step_x, rlevel->log2_prec_width + reducedresno);
943 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno);
944 }
945 }
946
947 step_x = 1<<step_x;
948 step_y = 1<<step_y;
949 for (y = tile_coord[1][0]; y < tile_coord[1][1]; y = (y/step_y + 1)*step_y) {
950 for (x = tile_coord[0][0]; x < tile_coord[0][1]; x = (x/step_x + 1)*step_x) {
951 for (compno = 0; compno < s->ncomponents; compno++) {
952 Jpeg2000Component *comp = tile->comp + compno;
953 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
954 Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno;
955 int log_subsampling[2] = { (compno+1&2)?s->chroma_shift[0]:0, (compno+1&2)?s->chroma_shift[1]:0};
956 unsigned prcx, prcy;
957 int trx0, try0;
958
959 trx0 = ff_jpeg2000_ceildivpow2(tile_coord[0][0], log_subsampling[0] + reducedresno);
960 try0 = ff_jpeg2000_ceildivpow2(tile_coord[1][0], log_subsampling[1] + reducedresno);
961
962 if (!(y % ((uint64_t)1 << (reslevel->log2_prec_height + reducedresno + log_subsampling[1])) == 0 ||
963 (y == tile_coord[1][0] && (try0 << reducedresno) % (1U << (reducedresno + reslevel->log2_prec_height)))))
964 continue;
965
966 if (!(x % ((uint64_t)1 << (reslevel->log2_prec_width + reducedresno + log_subsampling[0])) == 0 ||
967 (x == tile_coord[0][0] && (trx0 << reducedresno) % (1U << (reducedresno + reslevel->log2_prec_width)))))
968 continue;
969
970 // check if a precinct exists
971 prcx = ff_jpeg2000_ceildivpow2(x, log_subsampling[0] + reducedresno) >> reslevel->log2_prec_width;
972 prcy = ff_jpeg2000_ceildivpow2(y, log_subsampling[1] + reducedresno) >> reslevel->log2_prec_height;
973 prcx -= ff_jpeg2000_ceildivpow2(comp->coord_o[0][0], reducedresno) >> reslevel->log2_prec_width;
974 prcy -= ff_jpeg2000_ceildivpow2(comp->coord_o[1][0], reducedresno) >> reslevel->log2_prec_height;
975 precno = prcx + reslevel->num_precincts_x * prcy;
976
977 if (prcx >= reslevel->num_precincts_x || prcy >= reslevel->num_precincts_y) {
978 av_log(s->avctx, AV_LOG_WARNING, "prc %d %d outside limits %d %d\n",
979 prcx, prcy, reslevel->num_precincts_x, reslevel->num_precincts_y);
980 continue;
981 }
982 for (layno = 0; layno < nlayers; layno++) {
983 if ((ret = encode_packet(s, reslevel, layno, precno, qntsty->expn + (reslevelno ? 3*reslevelno-2 : 0),
984 qntsty->nguardbits, packetno++, nlayers)) < 0)
985 return ret;
986 }
987 }
988 }
989 }
990 }
991 break;
993 step_x = 32;
994 step_y = 32;
995 for (compno = 0; compno < s->ncomponents; compno++) {
996 Jpeg2000Component *comp = tile->comp + compno;
997
998 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
999 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1000 Jpeg2000ResLevel *rlevel = comp->reslevel + reslevelno;
1001 step_x = FFMIN(step_x, rlevel->log2_prec_width + reducedresno);
1002 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno);
1003 }
1004 }
1005 if (step_x >= 31 || step_y >= 31){
1006 avpriv_request_sample(s->avctx, "PCRL with large step");
1007 return AVERROR_PATCHWELCOME;
1008 }
1009 step_x = 1<<step_x;
1010 step_y = 1<<step_y;
1011
1012 for (y = tile_coord[1][0]; y < tile_coord[1][1]; y = (y/step_y + 1)*step_y) {
1013 for (x = tile_coord[0][0]; x < tile_coord[0][1]; x = (x/step_x + 1)*step_x) {
1014 for (compno = 0; compno < s->ncomponents; compno++) {
1015 Jpeg2000Component *comp = tile->comp + compno;
1016 int log_subsampling[2] = { (compno+1&2)?s->chroma_shift[0]:0, (compno+1&2)?s->chroma_shift[1]:0};
1017
1018 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
1019 unsigned prcx, prcy;
1020 int precno;
1021 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1022 Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno;
1023 int trx0, try0;
1024
1025 trx0 = ff_jpeg2000_ceildivpow2(tile_coord[0][0], log_subsampling[0] + reducedresno);
1026 try0 = ff_jpeg2000_ceildivpow2(tile_coord[1][0], log_subsampling[1] + reducedresno);
1027
1028 if (!(y % ((uint64_t)1 << (reslevel->log2_prec_height + reducedresno + log_subsampling[1])) == 0 ||
1029 (y == tile_coord[1][0] && (try0 << reducedresno) % (1U << (reducedresno + reslevel->log2_prec_height)))))
1030 continue;
1031
1032 if (!(x % ((uint64_t)1 << (reslevel->log2_prec_width + reducedresno + log_subsampling[0])) == 0 ||
1033 (x == tile_coord[0][0] && (trx0 << reducedresno) % (1U << (reducedresno + reslevel->log2_prec_width)))))
1034 continue;
1035
1036 // check if a precinct exists
1037 prcx = ff_jpeg2000_ceildivpow2(x, log_subsampling[0] + reducedresno) >> reslevel->log2_prec_width;
1038 prcy = ff_jpeg2000_ceildivpow2(y, log_subsampling[1] + reducedresno) >> reslevel->log2_prec_height;
1039 prcx -= ff_jpeg2000_ceildivpow2(comp->coord_o[0][0], reducedresno) >> reslevel->log2_prec_width;
1040 prcy -= ff_jpeg2000_ceildivpow2(comp->coord_o[1][0], reducedresno) >> reslevel->log2_prec_height;
1041
1042 precno = prcx + reslevel->num_precincts_x * prcy;
1043
1044 if (prcx >= reslevel->num_precincts_x || prcy >= reslevel->num_precincts_y) {
1045 av_log(s->avctx, AV_LOG_WARNING, "prc %d %d outside limits %d %d\n",
1046 prcx, prcy, reslevel->num_precincts_x, reslevel->num_precincts_y);
1047 continue;
1048 }
1049 for (layno = 0; layno < nlayers; layno++) {
1050 if ((ret = encode_packet(s, reslevel, layno, precno, qntsty->expn + (reslevelno ? 3*reslevelno-2 : 0),
1051 qntsty->nguardbits, packetno++, nlayers)) < 0)
1052 return ret;
1053 }
1054 }
1055 }
1056 }
1057 }
1058 break;
1059 case JPEG2000_PGOD_CPRL:
1060 for (compno = 0; compno < s->ncomponents; compno++) {
1061 Jpeg2000Component *comp = tile->comp + compno;
1062 int log_subsampling[2] = { (compno+1&2)?s->chroma_shift[0]:0, (compno+1&2)?s->chroma_shift[1]:0};
1063 step_x = 32;
1064 step_y = 32;
1065
1066 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
1067 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1068 Jpeg2000ResLevel *rlevel = comp->reslevel + reslevelno;
1069 step_x = FFMIN(step_x, rlevel->log2_prec_width + reducedresno);
1070 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno);
1071 }
1072 if (step_x >= 31 || step_y >= 31){
1073 avpriv_request_sample(s->avctx, "CPRL with large step");
1074 return AVERROR_PATCHWELCOME;
1075 }
1076 step_x = 1<<step_x;
1077 step_y = 1<<step_y;
1078
1079 for (y = tile_coord[1][0]; y < tile_coord[1][1]; y = (y/step_y + 1)*step_y) {
1080 for (x = tile_coord[0][0]; x < tile_coord[0][1]; x = (x/step_x + 1)*step_x) {
1081 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
1082 unsigned prcx, prcy;
1083 int precno;
1084 int trx0, try0;
1085 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1086 Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno;
1087
1088 trx0 = ff_jpeg2000_ceildivpow2(tile_coord[0][0], log_subsampling[0] + reducedresno);
1089 try0 = ff_jpeg2000_ceildivpow2(tile_coord[1][0], log_subsampling[1] + reducedresno);
1090
1091 if (!(y % ((uint64_t)1 << (reslevel->log2_prec_height + reducedresno + log_subsampling[1])) == 0 ||
1092 (y == tile_coord[1][0] && (try0 << reducedresno) % (1U << (reducedresno + reslevel->log2_prec_height)))))
1093 continue;
1094
1095 if (!(x % ((uint64_t)1 << (reslevel->log2_prec_width + reducedresno + log_subsampling[0])) == 0 ||
1096 (x == tile_coord[0][0] && (trx0 << reducedresno) % (1U << (reducedresno + reslevel->log2_prec_width)))))
1097 continue;
1098
1099 // check if a precinct exists
1100 prcx = ff_jpeg2000_ceildivpow2(x, log_subsampling[0] + reducedresno) >> reslevel->log2_prec_width;
1101 prcy = ff_jpeg2000_ceildivpow2(y, log_subsampling[1] + reducedresno) >> reslevel->log2_prec_height;
1102 prcx -= ff_jpeg2000_ceildivpow2(comp->coord_o[0][0], reducedresno) >> reslevel->log2_prec_width;
1103 prcy -= ff_jpeg2000_ceildivpow2(comp->coord_o[1][0], reducedresno) >> reslevel->log2_prec_height;
1104
1105 precno = prcx + reslevel->num_precincts_x * prcy;
1106
1107 if (prcx >= reslevel->num_precincts_x || prcy >= reslevel->num_precincts_y) {
1108 av_log(s->avctx, AV_LOG_WARNING, "prc %d %d outside limits %d %d\n",
1109 prcx, prcy, reslevel->num_precincts_x, reslevel->num_precincts_y);
1110 continue;
1111 }
1112 for (layno = 0; layno < nlayers; layno++) {
1113 if ((ret = encode_packet(s, reslevel, layno, precno, qntsty->expn + (reslevelno ? 3*reslevelno-2 : 0),
1114 qntsty->nguardbits, packetno++, nlayers)) < 0)
1115 return ret;
1116 }
1117 }
1118 }
1119 }
1120 }
1121
1122 }
1123
1124 av_log(s->avctx, AV_LOG_DEBUG, "after tier2\n");
1125 return 0;
1126}
1127
1128static void makelayer(Jpeg2000EncoderContext *s, int layno, double thresh, Jpeg2000Tile* tile, int final)
1129{
1130 int compno, resno, bandno, precno, cblkno;
1131 int passno;
1132
1133 for (compno = 0; compno < s->ncomponents; compno++) {
1134 Jpeg2000Component *comp = &tile->comp[compno];
1135
1136 for (resno = 0; resno < s->codsty.nreslevels; resno++) {
1137 Jpeg2000ResLevel *reslevel = comp->reslevel + resno;
1138
1139 for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++){
1140 for (bandno = 0; bandno < reslevel->nbands ; bandno++){
1141 Jpeg2000Band *band = reslevel->band + bandno;
1142 Jpeg2000Prec *prec = band->prec + precno;
1143
1144 for (cblkno = 0; cblkno < prec->nb_codeblocks_height * prec->nb_codeblocks_width; cblkno++){
1145 Jpeg2000Cblk *cblk = prec->cblk + cblkno;
1146 Jpeg2000Layer *layer = &cblk->layers[layno];
1147 int n;
1148
1149 if (layno == 0) {
1150 cblk->ninclpasses = 0;
1151 }
1152
1153 n = cblk->ninclpasses;
1154
1155 if (thresh < 0) {
1156 n = cblk->npasses;
1157 } else {
1158 for (passno = cblk->ninclpasses; passno < cblk->npasses; passno++) {
1159 int32_t dr;
1160 double dd;
1161 Jpeg2000Pass *pass = &cblk->passes[passno];
1162
1163 if (n == 0) {
1164 dr = pass->rate;
1165 dd = pass->disto;
1166 } else {
1167 dr = pass->rate - cblk->passes[n - 1].rate;
1168 dd = pass->disto - cblk->passes[n-1].disto;
1169 }
1170
1171 if (!dr) {
1172 if (dd != 0.0) {
1173 n = passno + 1;
1174 }
1175 continue;
1176 }
1177
1178 if (thresh - (dd / dr) < DBL_EPSILON)
1179 n = passno + 1;
1180 }
1181 }
1182 layer->npasses = n - cblk->ninclpasses;
1183 layer->cum_passes = n;
1184
1185 if (layer->npasses == 0) {
1186 layer->disto = 0;
1187 layer->data_len = 0;
1188 continue;
1189 }
1190
1191 if (cblk->ninclpasses == 0) {
1192 layer->data_len = cblk->passes[n - 1].rate;
1193 layer->data_start = cblk->data;
1194 layer->disto = cblk->passes[n - 1].disto;
1195 } else {
1196 layer->data_len = cblk->passes[n - 1].rate - cblk->passes[cblk->ninclpasses - 1].rate;
1197 layer->data_start = cblk->data + cblk->passes[cblk->ninclpasses - 1].rate;
1198 layer->disto = cblk->passes[n - 1].disto -
1199 cblk->passes[cblk->ninclpasses - 1].disto;
1200 }
1201 if (final) {
1202 cblk->ninclpasses = n;
1203 }
1204 }
1205 }
1206 }
1207 }
1208 }
1209}
1210
1212{
1213 int precno, compno, reslevelno, bandno, cblkno, passno, layno;
1214 int i;
1215 double min = DBL_MAX;
1216 double max = 0;
1217 double thresh;
1218
1219 Jpeg2000CodingStyle *codsty = &s->codsty;
1220
1221 for (compno = 0; compno < s->ncomponents; compno++){
1222 Jpeg2000Component *comp = tile->comp + compno;
1223
1224 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
1225 Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno;
1226
1227 for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++){
1228 for (bandno = 0; bandno < reslevel->nbands ; bandno++){
1229 Jpeg2000Band *band = reslevel->band + bandno;
1230 Jpeg2000Prec *prec = band->prec + precno;
1231
1232 for (cblkno = 0; cblkno < prec->nb_codeblocks_height * prec->nb_codeblocks_width; cblkno++){
1233 Jpeg2000Cblk *cblk = prec->cblk + cblkno;
1234 for (passno = 0; passno < cblk->npasses; passno++) {
1235 Jpeg2000Pass *pass = &cblk->passes[passno];
1236 int dr;
1237 double dd, drslope;
1238
1239 if (passno == 0) {
1240 dr = (int32_t)pass->rate;
1241 dd = pass->disto;
1242 } else {
1243 dr = (int32_t)(pass->rate - cblk->passes[passno - 1].rate);
1244 dd = pass->disto - cblk->passes[passno - 1].disto;
1245 }
1246
1247 if (dr <= 0)
1248 continue;
1249
1250 drslope = dd / dr;
1251 if (drslope < min)
1252 min = drslope;
1253
1254 if (drslope > max)
1255 max = drslope;
1256 }
1257 }
1258 }
1259 }
1260 }
1261 }
1262
1263 for (layno = 0; layno < s->nlayers; layno++) {
1264 double lo = min;
1265 double hi = max;
1266 double stable_thresh = 0.0;
1267 double good_thresh = 0.0;
1268 if (!s->layer_rates[layno]) {
1269 good_thresh = -1.0;
1270 } else {
1271 for (i = 0; i < 128; i++) {
1272 uint8_t *stream_pos = s->buf;
1273 int ret;
1274 thresh = (lo + hi) / 2;
1275 makelayer(s, layno, thresh, tile, 0);
1276 ret = encode_packets(s, tile, (int)(tile - s->tile), layno + 1);
1277 memset(stream_pos, 0, s->buf - stream_pos);
1278 if ((s->buf - stream_pos > ceil(tile->layer_rates[layno])) || ret < 0) {
1279 lo = thresh;
1280 s->buf = stream_pos;
1281 continue;
1282 }
1283 hi = thresh;
1284 stable_thresh = thresh;
1285 s->buf = stream_pos;
1286 }
1287 }
1288 if (good_thresh >= 0.0)
1289 good_thresh = stable_thresh == 0.0 ? thresh : stable_thresh;
1290 makelayer(s, layno, good_thresh, tile, 1);
1291 }
1292}
1293
1294static int getcut(Jpeg2000Cblk *cblk, uint64_t lambda)
1295{
1296 int passno, res = 0;
1297 for (passno = 0; passno < cblk->npasses; passno++){
1298 int dr;
1299 int64_t dd;
1300
1301 dr = cblk->passes[passno].rate
1302 - (res ? cblk->passes[res-1].rate : 0);
1303 dd = cblk->passes[passno].disto
1304 - (res ? cblk->passes[res-1].disto : 0);
1305
1306 if (dd >= dr * lambda)
1307 res = passno+1;
1308 }
1309 return res;
1310}
1311
1313{
1314 int precno, compno, reslevelno, bandno, cblkno, lev;
1315 Jpeg2000CodingStyle *codsty = &s->codsty;
1316
1317 for (compno = 0; compno < s->ncomponents; compno++){
1318 Jpeg2000Component *comp = tile->comp + compno;
1319
1320 for (reslevelno = 0, lev = codsty->nreslevels-1; reslevelno < codsty->nreslevels; reslevelno++, lev--){
1321 Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno;
1322
1323 for (precno = 0; precno < reslevel->num_precincts_x * reslevel->num_precincts_y; precno++){
1324 for (bandno = 0; bandno < reslevel->nbands ; bandno++){
1325 int bandpos = bandno + (reslevelno > 0);
1326 Jpeg2000Band *band = reslevel->band + bandno;
1327 Jpeg2000Prec *prec = band->prec + precno;
1328
1329 int64_t dwt_norm = dwt_norms[codsty->transform == FF_DWT53][bandpos][lev] * (int64_t)band->i_stepsize >> 15;
1330 int64_t lambda_prime = av_rescale(s->lambda, 1 << WMSEDEC_SHIFT, dwt_norm * dwt_norm);
1331 for (cblkno = 0; cblkno < prec->nb_codeblocks_height * prec->nb_codeblocks_width; cblkno++){
1332 Jpeg2000Cblk *cblk = prec->cblk + cblkno;
1333
1334 cblk->ninclpasses = getcut(cblk, lambda_prime);
1335 cblk->layers[0].data_start = cblk->data;
1336 cblk->layers[0].cum_passes = cblk->ninclpasses;
1337 cblk->layers[0].npasses = cblk->ninclpasses;
1338 if (cblk->ninclpasses)
1339 cblk->layers[0].data_len = cblk->passes[cblk->ninclpasses - 1].rate;
1340 }
1341 }
1342 }
1343 }
1344 }
1345}
1346
1348{
1349 int compno, reslevelno, bandno, ret;
1351 Jpeg2000CodingStyle *codsty = &s->codsty;
1352 for (compno = 0; compno < s->ncomponents; compno++){
1353 Jpeg2000Component *comp = s->tile[tileno].comp + compno;
1354
1355 t1.stride = (1<<codsty->log2_cblk_width) + 2;
1356
1357 av_log(s->avctx, AV_LOG_DEBUG,"dwt\n");
1358 if ((ret = ff_dwt_encode(&comp->dwt, comp->i_data)) < 0)
1359 return ret;
1360 av_log(s->avctx, AV_LOG_DEBUG,"after dwt -> tier1\n");
1361
1362 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
1363 Jpeg2000ResLevel *reslevel = comp->reslevel + reslevelno;
1364
1365 for (bandno = 0; bandno < reslevel->nbands ; bandno++){
1366 Jpeg2000Band *band = reslevel->band + bandno;
1367 Jpeg2000Prec *prec = band->prec; // we support only 1 precinct per band ATM in the encoder
1368 int cblkx, cblky, cblkno=0, xx0, x0, xx1, y0, yy0, yy1, bandpos;
1369 yy0 = bandno == 0 ? 0 : comp->reslevel[reslevelno-1].coord[1][1] - comp->reslevel[reslevelno-1].coord[1][0];
1370 y0 = yy0;
1371 yy1 = FFMIN(ff_jpeg2000_ceildivpow2(band->coord[1][0] + 1, band->log2_cblk_height) << band->log2_cblk_height,
1372 band->coord[1][1]) - band->coord[1][0] + yy0;
1373
1374 if (band->coord[0][0] == band->coord[0][1] || band->coord[1][0] == band->coord[1][1])
1375 continue;
1376
1377 bandpos = bandno + (reslevelno > 0);
1378
1379 for (cblky = 0; cblky < prec->nb_codeblocks_height; cblky++){
1380 if (reslevelno == 0 || bandno == 1)
1381 xx0 = 0;
1382 else
1383 xx0 = comp->reslevel[reslevelno-1].coord[0][1] - comp->reslevel[reslevelno-1].coord[0][0];
1384 x0 = xx0;
1385 xx1 = FFMIN(ff_jpeg2000_ceildivpow2(band->coord[0][0] + 1, band->log2_cblk_width) << band->log2_cblk_width,
1386 band->coord[0][1]) - band->coord[0][0] + xx0;
1387
1388 for (cblkx = 0; cblkx < prec->nb_codeblocks_width; cblkx++, cblkno++){
1389 int y, x;
1390 if (codsty->transform == FF_DWT53){
1391 for (y = yy0; y < yy1; y++){
1392 int *ptr = t1.data + (y-yy0)*t1.stride;
1393 for (x = xx0; x < xx1; x++){
1394 *ptr++ = comp->i_data[(comp->coord[0][1] - comp->coord[0][0]) * y + x] * (1 << NMSEDEC_FRACBITS);
1395 }
1396 }
1397 } else{
1398 int64_t multiplier = (int64_t)(16384 * 65536 / band->i_stepsize);
1399 for (y = yy0; y < yy1; y++){
1400 int *ptr = t1.data + (y-yy0)*t1.stride;
1401 for (x = xx0; x < xx1; x++){
1402 *ptr = (comp->i_data[(comp->coord[0][1] - comp->coord[0][0]) * y + x]);
1403 *ptr = (int64_t)*ptr * multiplier >> 15 - NMSEDEC_FRACBITS;
1404 ptr++;
1405 }
1406 }
1407 }
1408 if (!prec->cblk[cblkno].data)
1409 prec->cblk[cblkno].data = av_malloc(1 + 8192);
1410 if (!prec->cblk[cblkno].passes)
1411 prec->cblk[cblkno].passes = av_malloc_array(JPEG2000_MAX_PASSES, sizeof (*prec->cblk[cblkno].passes));
1412 if (!prec->cblk[cblkno].data || !prec->cblk[cblkno].passes)
1413 return AVERROR(ENOMEM);
1414 encode_cblk(s, &t1, prec->cblk + cblkno, tile, xx1 - xx0, yy1 - yy0,
1415 bandpos, codsty->nreslevels - reslevelno - 1);
1416 xx0 = xx1;
1417 xx1 = FFMIN(xx1 + (1 << band->log2_cblk_width), band->coord[0][1] - band->coord[0][0] + x0);
1418 }
1419 yy0 = yy1;
1420 yy1 = FFMIN(yy1 + (1 << band->log2_cblk_height), band->coord[1][1] - band->coord[1][0] + y0);
1421 }
1422 }
1423 }
1424 av_log(s->avctx, AV_LOG_DEBUG, "after tier1\n");
1425 }
1426
1427 av_log(s->avctx, AV_LOG_DEBUG, "rate control\n");
1428 if (s->compression_rate_enc)
1429 makelayers(s, tile);
1430 else
1431 truncpasses(s, tile);
1432
1433 if ((ret = encode_packets(s, tile, tileno, s->nlayers)) < 0)
1434 return ret;
1435 av_log(s->avctx, AV_LOG_DEBUG, "after rate control\n");
1436 return 0;
1437}
1438
1440{
1441 int tileno, compno;
1442 Jpeg2000CodingStyle *codsty = &s->codsty;
1443
1444 if (!s->tile)
1445 return;
1446 for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++){
1447 if (s->tile[tileno].comp) {
1448 for (compno = 0; compno < s->ncomponents; compno++){
1449 Jpeg2000Component *comp = s->tile[tileno].comp + compno;
1450 ff_jpeg2000_cleanup(comp, codsty);
1451 }
1452 av_freep(&s->tile[tileno].comp);
1453 }
1454 av_freep(&s->tile[tileno].layer_rates);
1455 }
1456 av_freep(&s->tile);
1457}
1458
1460{
1461 int tileno, compno;
1462 for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++){
1463 Jpeg2000Tile *tile = s->tile + tileno;
1464 for (compno = 0; compno < s->ncomponents; compno++)
1465 ff_jpeg2000_reinit(tile->comp + compno, &s->codsty);
1466 }
1467}
1468
1469static void update_size(uint8_t *size, const uint8_t *end)
1470{
1471 AV_WB32(size, end-size);
1472}
1473
1475 const AVFrame *pict, int *got_packet)
1476{
1477 int tileno, ret;
1479 uint8_t *chunkstart, *jp2cstart, *jp2hstart;
1481
1482 if ((ret = ff_alloc_packet(avctx, pkt, avctx->width*avctx->height*9 + FF_INPUT_BUFFER_MIN_SIZE)) < 0)
1483 return ret;
1484
1485 // init:
1486 s->buf = s->buf_start = pkt->data;
1487 s->buf_end = pkt->data + pkt->size;
1488
1489 s->picture = pict;
1490
1491 s->lambda = s->picture->quality * LAMBDA_SCALE;
1492
1493 if (s->cbps[0] > 8)
1494 copy_frame_16(s);
1495 else
1496 copy_frame_8(s);
1497
1498 reinit(s);
1499
1500 if (s->format == CODEC_JP2) {
1501 av_assert0(s->buf == pkt->data);
1502
1503 bytestream_put_be32(&s->buf, 0x0000000C);
1504 bytestream_put_be32(&s->buf, 0x6A502020);
1505 bytestream_put_be32(&s->buf, 0x0D0A870A);
1506
1507 chunkstart = s->buf;
1508 bytestream_put_be32(&s->buf, 0);
1509 bytestream_put_buffer(&s->buf, "ftyp", 4);
1510 bytestream_put_buffer(&s->buf, "jp2\040\040", 4);
1511 bytestream_put_be32(&s->buf, 0);
1512 bytestream_put_buffer(&s->buf, "jp2\040", 4);
1513 update_size(chunkstart, s->buf);
1514
1515 jp2hstart = s->buf;
1516 bytestream_put_be32(&s->buf, 0);
1517 bytestream_put_buffer(&s->buf, "jp2h", 4);
1518
1519 chunkstart = s->buf;
1520 bytestream_put_be32(&s->buf, 0);
1521 bytestream_put_buffer(&s->buf, "ihdr", 4);
1522 bytestream_put_be32(&s->buf, avctx->height);
1523 bytestream_put_be32(&s->buf, avctx->width);
1524 bytestream_put_be16(&s->buf, s->ncomponents);
1525 bytestream_put_byte(&s->buf, s->cbps[0]);
1526 bytestream_put_byte(&s->buf, 7);
1527 bytestream_put_byte(&s->buf, 0);
1528 bytestream_put_byte(&s->buf, 0);
1529 update_size(chunkstart, s->buf);
1530
1531 chunkstart = s->buf;
1532 bytestream_put_be32(&s->buf, 0);
1533 bytestream_put_buffer(&s->buf, "colr", 4);
1534 bytestream_put_byte(&s->buf, 1);
1535 bytestream_put_byte(&s->buf, 0);
1536 bytestream_put_byte(&s->buf, 0);
1537 if ((desc->flags & AV_PIX_FMT_FLAG_RGB) || avctx->pix_fmt == AV_PIX_FMT_PAL8) {
1538 bytestream_put_be32(&s->buf, 16);
1539 } else if (s->ncomponents == 1) {
1540 bytestream_put_be32(&s->buf, 17);
1541 } else {
1542 bytestream_put_be32(&s->buf, 18);
1543 }
1544 update_size(chunkstart, s->buf);
1545 if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
1546 int i;
1547 const uint8_t *palette = pict->data[1];
1548 chunkstart = s->buf;
1549 bytestream_put_be32(&s->buf, 0);
1550 bytestream_put_buffer(&s->buf, "pclr", 4);
1551 bytestream_put_be16(&s->buf, AVPALETTE_COUNT);
1552 bytestream_put_byte(&s->buf, 3); // colour channels
1553 bytestream_put_be24(&s->buf, 0x070707); //colour depths
1554 for (i = 0; i < AVPALETTE_COUNT; i++) {
1555 bytestream_put_be24(&s->buf, HAVE_BIGENDIAN ? AV_RB24(palette + 1) : AV_RL24(palette));
1556 palette += 4;
1557 }
1558 update_size(chunkstart, s->buf);
1559 chunkstart = s->buf;
1560 bytestream_put_be32(&s->buf, 0);
1561 bytestream_put_buffer(&s->buf, "cmap", 4);
1562 for (i = 0; i < 3; i++) {
1563 bytestream_put_be16(&s->buf, 0); // component
1564 bytestream_put_byte(&s->buf, 1); // palette mapping
1565 bytestream_put_byte(&s->buf, i); // index
1566 }
1567 update_size(chunkstart, s->buf);
1568 }
1569 update_size(jp2hstart, s->buf);
1570
1571 jp2cstart = s->buf;
1572 bytestream_put_be32(&s->buf, 0);
1573 bytestream_put_buffer(&s->buf, "jp2c", 4);
1574 }
1575
1576 if (s->buf_end - s->buf < 2)
1577 return -1;
1578 bytestream_put_be16(&s->buf, JPEG2000_SOC);
1579 if ((ret = put_siz(s)) < 0)
1580 return ret;
1581 if ((ret = put_cod(s)) < 0)
1582 return ret;
1583 if ((ret = put_qcd(s, 0)) < 0)
1584 return ret;
1585 if ((ret = put_com(s, 0)) < 0)
1586 return ret;
1587
1588 for (tileno = 0; tileno < s->numXtiles * s->numYtiles; tileno++){
1589 uint8_t *psotptr;
1590 if (!(psotptr = put_sot(s, tileno)))
1591 return -1;
1592 if (s->buf_end - s->buf < 2)
1593 return -1;
1594 bytestream_put_be16(&s->buf, JPEG2000_SOD);
1595 if ((ret = encode_tile(s, s->tile + tileno, tileno)) < 0)
1596 return ret;
1597 bytestream_put_be32(&psotptr, s->buf - psotptr + 6);
1598 }
1599 if (s->buf_end - s->buf < 2)
1600 return -1;
1601 bytestream_put_be16(&s->buf, JPEG2000_EOC);
1602
1603 if (s->format == CODEC_JP2)
1604 update_size(jp2cstart, s->buf);
1605
1606 av_log(s->avctx, AV_LOG_DEBUG, "end\n");
1607 pkt->size = s->buf - s->buf_start;
1608 *got_packet = 1;
1609
1610 return 0;
1611}
1612
1614{
1615 int i;
1616 char *token;
1617 char *saveptr = NULL;
1618 int rate;
1619 int nlayers = 0;
1620 if (!s->lr_str) {
1621 s->nlayers = 1;
1622 s->layer_rates[0] = 0;
1623 s->compression_rate_enc = 0;
1624 return 0;
1625 }
1626
1627 token = av_strtok(s->lr_str, ",", &saveptr);
1628 if (token && (rate = strtol(token, NULL, 10))) {
1629 s->layer_rates[0] = rate <= 1 ? 0:rate;
1630 nlayers++;
1631 } else {
1632 return AVERROR_INVALIDDATA;
1633 }
1634
1635 while (1) {
1636 token = av_strtok(NULL, ",", &saveptr);
1637 if (!token)
1638 break;
1639 if (rate = strtol(token, NULL, 10)) {
1640 if (nlayers >= 100) {
1641 return AVERROR_INVALIDDATA;
1642 }
1643 s->layer_rates[nlayers] = rate <= 1 ? 0:rate;
1644 nlayers++;
1645 } else {
1646 return AVERROR_INVALIDDATA;
1647 }
1648 }
1649
1650 for (i = 1; i < nlayers; i++) {
1651 if (s->layer_rates[i] >= s->layer_rates[i-1]) {
1652 return AVERROR_INVALIDDATA;
1653 }
1654 }
1655 s->nlayers = nlayers;
1656 s->compression_rate_enc = 1;
1657 return 0;
1658}
1659
1661{
1662 static AVOnce init_static_once = AV_ONCE_INIT;
1663 int i, ret;
1665 Jpeg2000CodingStyle *codsty = &s->codsty;
1666 Jpeg2000QuantStyle *qntsty = &s->qntsty;
1668
1669 s->avctx = avctx;
1670 av_log(s->avctx, AV_LOG_DEBUG, "init\n");
1671 if (parse_layer_rates(s)) {
1672 av_log(avctx, AV_LOG_WARNING, "Layer rates invalid. Encoding with 1 layer based on quality metric.\n");
1673 s->nlayers = 1;
1674 s->layer_rates[0] = 0;
1675 s->compression_rate_enc = 0;
1676 }
1677
1678 if (avctx->pix_fmt == AV_PIX_FMT_PAL8 && (s->pred != FF_DWT97_INT || s->format != CODEC_JP2)) {
1679 av_log(s->avctx, AV_LOG_WARNING, "Forcing lossless jp2 for pal8\n");
1680 s->pred = 1;
1681 s->format = CODEC_JP2;
1682 }
1683
1684 // defaults:
1685 // TODO: implement setting non-standard precinct size
1686 memset(codsty->log2_prec_widths , 15, sizeof(codsty->log2_prec_widths ));
1687 memset(codsty->log2_prec_heights, 15, sizeof(codsty->log2_prec_heights));
1688 codsty->nreslevels2decode=
1689 codsty->nreslevels = 7;
1690 codsty->nlayers = s->nlayers;
1691 codsty->log2_cblk_width = 4;
1692 codsty->log2_cblk_height = 4;
1693 codsty->transform = s->pred ? FF_DWT53 : FF_DWT97_INT;
1694
1695 qntsty->nguardbits = 1;
1696
1697 if ((s->tile_width & (s->tile_width -1)) ||
1698 (s->tile_height & (s->tile_height-1))) {
1699 av_log(avctx, AV_LOG_WARNING, "Tile dimension not a power of 2\n");
1700 }
1701
1702 if (codsty->transform == FF_DWT53)
1703 qntsty->quantsty = JPEG2000_QSTY_NONE;
1704 else
1705 qntsty->quantsty = JPEG2000_QSTY_SE;
1706
1707 s->width = avctx->width;
1708 s->height = avctx->height;
1709
1710 s->ncomponents = desc->nb_components;
1711 for (i = 0; i < 4; i++) {
1712 s->cbps[i] = desc->comp[i].depth;
1713 s->comp_remap[i] = i; //default
1714 }
1715
1716 if ((desc->flags & AV_PIX_FMT_FLAG_PLANAR) && s->ncomponents > 1) {
1717 s->planar = 1;
1719 s->chroma_shift, s->chroma_shift + 1);
1720 if (ret)
1721 return ret;
1722 if (desc->flags & AV_PIX_FMT_FLAG_RGB) {
1723 s->comp_remap[0] = 2;
1724 s->comp_remap[1] = 0;
1725 s->comp_remap[2] = 1;
1726 }
1727 }
1728
1729 ff_thread_once(&init_static_once, init_luts);
1730
1732 if ((ret=init_tiles(s)) < 0)
1733 return ret;
1734
1735 av_log(s->avctx, AV_LOG_DEBUG, "after init\n");
1736
1737 return 0;
1738}
1739
1741{
1743
1744 cleanup(s);
1745 return 0;
1746}
1747
1748// taken from the libopenjpeg wrapper so it matches
1749
1750#define OFFSET(x) offsetof(Jpeg2000EncoderContext, x)
1751#define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1752static const AVOption options[] = {
1753 { "format", "Codec Format", OFFSET(format), AV_OPT_TYPE_INT, { .i64 = CODEC_JP2 }, CODEC_J2K, CODEC_JP2, VE, .unit = "format" },
1754 { "j2k", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_J2K }, 0, 0, VE, .unit = "format" },
1755 { "jp2", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CODEC_JP2 }, 0, 0, VE, .unit = "format" },
1756 { "tile_width", "Tile Width", OFFSET(tile_width), AV_OPT_TYPE_INT, { .i64 = 256 }, 1, 1<<30, VE, },
1757 { "tile_height", "Tile Height", OFFSET(tile_height), AV_OPT_TYPE_INT, { .i64 = 256 }, 1, 1<<30, VE, },
1758 { "pred", "DWT Type", OFFSET(pred), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE, .unit = "pred" },
1759 { "dwt97int", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, .unit = "pred" },
1760 { "dwt53", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, .unit = "pred" },
1761 { "sop", "SOP marker", OFFSET(sop), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE, },
1762 { "eph", "EPH marker", OFFSET(eph), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE, },
1763 { "prog", "Progression Order", OFFSET(prog), AV_OPT_TYPE_INT, { .i64 = 0 }, JPEG2000_PGOD_LRCP, JPEG2000_PGOD_CPRL, VE, .unit = "prog" },
1764 { "lrcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = JPEG2000_PGOD_LRCP }, 0, 0, VE, .unit = "prog" },
1765 { "rlcp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = JPEG2000_PGOD_RLCP }, 0, 0, VE, .unit = "prog" },
1766 { "rpcl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = JPEG2000_PGOD_RPCL }, 0, 0, VE, .unit = "prog" },
1767 { "pcrl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = JPEG2000_PGOD_PCRL }, 0, 0, VE, .unit = "prog" },
1768 { "cprl", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = JPEG2000_PGOD_CPRL }, 0, 0, VE, .unit = "prog" },
1769 { "layer_rates", "Layer Rates", OFFSET(lr_str), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, VE },
1770 { NULL }
1771};
1772
1773static const AVClass j2k_class = {
1774 .class_name = "jpeg 2000 encoder",
1775 .item_name = av_default_item_name,
1776 .option = options,
1777 .version = LIBAVUTIL_VERSION_INT,
1778};
1779
1781 .p.name = "jpeg2000",
1782 CODEC_LONG_NAME("JPEG 2000"),
1783 .p.type = AVMEDIA_TYPE_VIDEO,
1784 .p.id = AV_CODEC_ID_JPEG2000,
1787 .priv_data_size = sizeof(Jpeg2000EncoderContext),
1788 .init = j2kenc_init,
1790 .close = j2kenc_destroy,
1807
1809 .color_ranges = AVCOL_RANGE_MPEG,
1810 .p.priv_class = &j2k_class,
1811 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
1812};
static double val(void *priv, double ch)
Definition aeval.c:77
static const char *const format[]
Definition af_aiir.c:445
const FFCodec ff_jpeg2000_encoder
Definition j2kenc.c:1780
#define VE
Definition amfenc_av1.c:30
int32_t
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
Libavcodec external API header.
static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t *src, unsigned int size)
Definition bytestream.h:372
static int FUNC tile(CodedBitstreamContext *ctx, RWContext *rw, APVRawTile *current, int tile_idx, uint32_t tile_size)
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define xi(width, name, var, range_min, range_max, subs,...)
Definition cbs_h264.c:115
#define bit(string, value)
Definition cbs_mpeg2.c:56
#define ss(width, name, subs,...)
Definition cbs_vp9.c:202
#define s(width, name)
Definition cbs_vp9.c:198
static LevelCodes lev[4+3+3]
Definition clearvideo.c:80
#define CODEC_PIXFMTS(...)
#define FF_CODEC_ENCODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
common internal and external API header
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static __device__ float ceil(float a)
#define min(a, b)
#define max(a, b)
static AVPacket * pkt
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
static void comp(unsigned char *dst, ptrdiff_t dst_stride, unsigned char *src, ptrdiff_t src_stride, int add)
Definition eamad.c:79
int ff_alloc_packet(AVCodecContext *avctx, AVPacket *avpkt, int64_t size)
Check AVPacket size and allocate data.
Definition encode.c:62
#define FF_INPUT_BUFFER_MIN_SIZE
Used by some encoders as upper bound for the length of headers.
Definition encode.h:34
static int encode_frame(OutputFile *of, OutputStream *ost, AVFrame *frame, AVPacket *pkt)
Definition ffmpeg_enc.c:694
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition codec.h:147
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition avcodec.h:322
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition codec.h:98
@ AV_CODEC_ID_JPEG2000
Definition codec_id.h:138
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition error.h:64
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
Definition avstring.c:179
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
int a
#define av_log2
Definition intmath.h:84
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition intra.c:278
#define AV_RL24(x)
#define AV_WB32(p, v)
#define AV_RB24(x)
static int init_tiles(Jpeg2000EncoderContext *s)
compute the sizes of tiles, resolution levels, bands, etc.
Definition j2kenc.c:390
static int encode_packet(Jpeg2000EncoderContext *s, Jpeg2000ResLevel *rlevel, int layno, int precno, const uint8_t *expn, int numgbits, int packetno, int nlayers)
Definition j2kenc.c:718
static int put_com(Jpeg2000EncoderContext *s, int compno)
Definition j2kenc.c:322
static int parse_layer_rates(Jpeg2000EncoderContext *s)
Definition j2kenc.c:1613
#define WMSEDEC_SHIFT
must be >= 13
Definition j2kenc.c:85
static void update_size(uint8_t *size, const uint8_t *end)
Definition j2kenc.c:1469
static void makelayers(Jpeg2000EncoderContext *s, Jpeg2000Tile *tile)
Definition j2kenc.c:1211
static int getcut(Jpeg2000Cblk *cblk, uint64_t lambda)
Definition j2kenc.c:1294
static void makelayer(Jpeg2000EncoderContext *s, int layno, double thresh, Jpeg2000Tile *tile, int final)
Definition j2kenc.c:1128
static av_cold void init_luts(void)
Definition j2kenc.c:517
#define NMSEDEC_FRACBITS
Definition j2kenc.c:84
static void truncpasses(Jpeg2000EncoderContext *s, Jpeg2000Tile *tile)
Definition j2kenc.c:1312
static void putnumpasses(Jpeg2000EncoderContext *s, int n)
Definition j2kenc.c:703
static int encode_tile(Jpeg2000EncoderContext *s, Jpeg2000Tile *tile, int tileno)
Definition j2kenc.c:1347
static uint8_t * put_sot(Jpeg2000EncoderContext *s, int tileno)
Definition j2kenc.c:341
static void encode_refpass(Jpeg2000T1Context *t1, int width, int height, int *nmsedec, int bpno)
Definition j2kenc.c:572
static void reinit(Jpeg2000EncoderContext *s)
Definition j2kenc.c:1459
static int encode_packets(Jpeg2000EncoderContext *s, Jpeg2000Tile *tile, int tileno, int nlayers)
Definition j2kenc.c:882
static av_cold int j2kenc_init(AVCodecContext *avctx)
Definition j2kenc.c:1660
static int j2kenc_destroy(AVCodecContext *avctx)
Definition j2kenc.c:1740
static void encode_sigpass(Jpeg2000T1Context *t1, int width, int height, int bandno, int *nmsedec, int bpno)
Definition j2kenc.c:550
static void init_quantization(Jpeg2000EncoderContext *s)
Definition j2kenc.c:487
static int lut_nmsedec_sig0[1<< NMSEDEC_BITS]
Definition j2kenc.c:94
static void compute_rates(Jpeg2000EncoderContext *s)
Definition j2kenc.c:360
static void tag_tree_update(Jpeg2000TgtNode *node)
update the value in node
Definition j2kenc.c:225
static void cleanup(Jpeg2000EncoderContext *s)
Definition j2kenc.c:1439
static void put_num(Jpeg2000EncoderContext *s, int num, int n)
put n least significant bits of a number num
Definition j2kenc.c:168
static void j2k_flush(Jpeg2000EncoderContext *s)
flush the bitstream
Definition j2kenc.c:175
#define LAMBDA_SCALE
Definition j2kenc.c:86
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
Definition j2kenc.c:1474
static int lut_nmsedec_sig[1<< NMSEDEC_BITS]
Definition j2kenc.c:93
#define CODEC_JP2
Definition j2kenc.c:88
static int lut_nmsedec_ref0[1<< NMSEDEC_BITS]
Definition j2kenc.c:92
#define NMSEDEC_BITS
Definition j2kenc.c:83
static void encode_cblk(Jpeg2000EncoderContext *s, Jpeg2000T1Context *t1, Jpeg2000Cblk *cblk, Jpeg2000Tile *tile, int width, int height, int bandpos, int lev)
Definition j2kenc.c:641
static int lut_nmsedec_ref[1<< NMSEDEC_BITS]
Definition j2kenc.c:91
static int put_qcd(Jpeg2000EncoderContext *s, int compno)
Definition j2kenc.c:296
static int getnmsedec_sig(int x, int bpno)
Definition j2kenc.c:536
static int getnmsedec_ref(int x, int bpno)
Definition j2kenc.c:543
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
Definition j2kenc.c:154
static void tag_tree_code(Jpeg2000EncoderContext *s, Jpeg2000TgtNode *node, int threshold)
code the value stored in node
Definition j2kenc.c:188
static const int dwt_norms[2][4][10]
Definition j2kenc.c:96
static const AVClass j2k_class
Definition j2kenc.c:1773
#define OFFSET(x)
Definition j2kenc.c:1750
static void encode_clnpass(Jpeg2000T1Context *t1, int width, int height, int bandno, int *nmsedec, int bpno)
Definition j2kenc.c:586
static int put_siz(Jpeg2000EncoderContext *s)
Definition j2kenc.c:235
#define CODEC_J2K
Definition j2kenc.c:89
#define COPY_FRAME(D, PIXEL)
Definition j2kenc.c:442
static int put_cod(Jpeg2000EncoderContext *s)
Definition j2kenc.c:264
void ff_tag_tree_zero(Jpeg2000TgtNode *t, int w, int h, int val)
Definition jpeg2000.c:86
void av_cold ff_jpeg2000_init_tier1_luts(void)
Definition jpeg2000.c:173
void ff_jpeg2000_reinit(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty)
Definition jpeg2000.c:580
void ff_jpeg2000_cleanup(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty)
Definition jpeg2000.c:601
int ff_jpeg2000_init_component(Jpeg2000Component *comp, Jpeg2000CodingStyle *codsty, Jpeg2000QuantStyle *qntsty, const int cbps, int dx, int dy, AVCodecContext *avctx)
Definition jpeg2000.c:470
void ff_jpeg2000_set_significance(Jpeg2000T1Context *t1, int x, int y, int negative)
Definition jpeg2000.c:179
JPEG 2000 structures and defines common to encoder and decoder.
#define JPEG2000_T1_SIG_NB
Definition jpeg2000.h:93
#define JPEG2000_CSTY_SOP
Definition jpeg2000.h:119
static int ff_jpeg2000_ceildivpow2(int a, int b)
Definition jpeg2000.h:244
#define JPEG2000_PGOD_PCRL
Definition jpeg2000.h:128
#define JPEG2000_T1_REF
Definition jpeg2000.h:105
@ JPEG2000_QSTY_NONE
Definition jpeg2000.h:73
@ JPEG2000_QSTY_SE
Definition jpeg2000.h:75
#define JPEG2000_T1_VIS
Definition jpeg2000.h:103
static int ff_jpeg2000_ceildiv(int a, int64_t b)
Definition jpeg2000.h:249
#define JPEG2000_CSTY_EPH
Definition jpeg2000.h:120
#define JPEG2000_PGOD_CPRL
Definition jpeg2000.h:129
#define JPEG2000_PGOD_RPCL
Definition jpeg2000.h:127
#define JPEG2000_MAX_PASSES
Definition jpeg2000.h:81
#define JPEG2000_PGOD_RLCP
Definition jpeg2000.h:126
static int ff_jpeg2000_getsgnctxno(int flag, int *xorbit)
Definition jpeg2000.h:286
static int ff_jpeg2000_getrefctxno(int flag)
Definition jpeg2000.h:277
@ JPEG2000_SOT
Definition jpeg2000.h:56
@ JPEG2000_COM
Definition jpeg2000.h:55
@ JPEG2000_SOP
Definition jpeg2000.h:57
@ JPEG2000_QCD
Definition jpeg2000.h:48
@ JPEG2000_SOD
Definition jpeg2000.h:59
@ JPEG2000_EPH
Definition jpeg2000.h:58
@ JPEG2000_COD
Definition jpeg2000.h:42
@ JPEG2000_SIZ
Definition jpeg2000.h:41
@ JPEG2000_EOC
Definition jpeg2000.h:60
@ JPEG2000_SOC
Definition jpeg2000.h:39
#define JPEG2000_T1_SGN
Definition jpeg2000.h:107
static int ff_jpeg2000_getsigctxno(int flag, int bandno)
Definition jpeg2000.h:268
#define JPEG2000_T1_SIG
Definition jpeg2000.h:104
#define JPEG2000_PGOD_LRCP
Definition jpeg2000.h:125
int ff_dwt_encode(DWTContext *s, void *t)
@ FF_DWT97_INT
Definition jpeg2000dwt.h:40
@ FF_DWT53
Definition jpeg2000dwt.h:39
Libavcodec version macros.
#define LIBAVCODEC_IDENT
Definition version.h:43
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
#define AVOnce
Definition thread.h:202
static int ff_thread_once(char *control, void(*routine)(void))
Definition thread.h:205
#define AV_ONCE_INIT
Definition thread.h:203
const char * desc
Definition libsvtav1.c:83
static const uint16_t mask[17]
Definition lzw.c:38
#define FFMIN(a, b)
Definition macros.h:49
#define FFMAX(a, b)
Definition macros.h:47
void * av_calloc(size_t nmemb, size_t size)
Definition mem.c:264
Memory handling functions.
void ff_mqc_encode(MqcState *mqc, uint8_t *cxstate, int d)
code bit d with context cx
Definition mqcenc.c:81
#define MQC_CX_UNI
Definition mqc.h:33
int ff_mqc_flush_to(MqcState *mqc, uint8_t *dst, int *dst_len)
flush the encoder [returns number of bytes encoded]
Definition mqcenc.c:119
#define MQC_CX_RL
Definition mqc.h:34
void ff_mqc_initenc(MqcState *mqc, uint8_t *bp)
initialize the encoder
Definition mqcenc.c:71
#define av_malloc(s)
Definition ops_static.c:52
AVOptions.
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition pixdesc.c:3488
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_FLAG_RGB
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
Definition pixdesc.h:136
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
Definition pixdesc.h:132
#define AV_PIX_FMT_GBRAP12
Definition pixfmt.h:569
#define AV_PIX_FMT_YUV420P16
Definition pixfmt.h:556
#define AV_PIX_FMT_YUV444P12
Definition pixfmt.h:552
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#define AV_PIX_FMT_YUV420P10
Definition pixfmt.h:545
#define AV_PIX_FMT_YUV440P12
Definition pixfmt.h:551
#define AV_PIX_FMT_GRAY9
Definition pixfmt.h:524
#define AV_PIX_FMT_GBRAP16
Definition pixfmt.h:571
#define AV_PIX_FMT_GBRP9
Definition pixfmt.h:563
#define AV_PIX_FMT_YUV422P9
Definition pixfmt.h:543
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
Definition pixfmt.h:766
#define AV_PIX_FMT_YUVA444P10
Definition pixfmt.h:598
#define AV_PIX_FMT_YUVA420P16
Definition pixfmt.h:601
#define AV_PIX_FMT_YA16
Definition pixfmt.h:530
#define AV_PIX_FMT_YUV420P12
Definition pixfmt.h:549
#define AV_PIX_FMT_YUVA420P10
Definition pixfmt.h:596
#define AV_PIX_FMT_YUVA422P9
Definition pixfmt.h:594
#define AV_PIX_FMT_YUV422P12
Definition pixfmt.h:550
#define AV_PIX_FMT_GBRP10
Definition pixfmt.h:564
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546
#define AV_PIX_FMT_GRAY12
Definition pixfmt.h:526
#define AV_PIX_FMT_RGBA64
Definition pixfmt.h:535
#define AV_PIX_FMT_GBRP12
Definition pixfmt.h:565
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
#define AV_PIX_FMT_RGB48
Definition pixfmt.h:531
#define AV_PIX_FMT_YUVA420P9
Definition pixfmt.h:593
#define AV_PIX_FMT_YUVA422P10
Definition pixfmt.h:597
#define AV_PIX_FMT_YUV420P14
Definition pixfmt.h:553
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition pixfmt.h:106
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition pixfmt.h:108
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition pixfmt.h:79
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition pixfmt.h:100
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
Definition pixfmt.h:174
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition pixfmt.h:212
@ AV_PIX_FMT_GBR24P
Definition pixfmt.h:166
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
Definition pixfmt.h:173
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
@ AV_PIX_FMT_YA8
8 bits gray, 8 bits alpha
Definition pixfmt.h:140
#define AV_PIX_FMT_YUV422P14
Definition pixfmt.h:554
#define AVPALETTE_COUNT
Definition pixfmt.h:33
#define AV_PIX_FMT_GRAY10
Definition pixfmt.h:525
#define AV_PIX_FMT_GRAY14
Definition pixfmt.h:527
#define AV_PIX_FMT_YUV422P16
Definition pixfmt.h:557
#define AV_PIX_FMT_YUV440P10
Definition pixfmt.h:547
#define AV_PIX_FMT_GRAY16
Definition pixfmt.h:528
#define AV_PIX_FMT_GBRAP10
Definition pixfmt.h:568
#define AV_PIX_FMT_YUVA444P16
Definition pixfmt.h:603
#define AV_PIX_FMT_YUVA422P16
Definition pixfmt.h:602
#define AV_PIX_FMT_GBRP16
Definition pixfmt.h:567
#define AV_PIX_FMT_YUV444P14
Definition pixfmt.h:555
#define AV_PIX_FMT_YUVA444P9
Definition pixfmt.h:595
#define AV_PIX_FMT_GBRP14
Definition pixfmt.h:566
#define AV_PIX_FMT_YUV444P16
Definition pixfmt.h:558
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548
static const float pred[4]
Definition siprdata.h:259
unsigned int pos
Definition spdifenc.c:431
Describe the class of an AVClass context structure.
Definition log.h:76
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
AVOption.
Definition opt.h:428
This structure stores compressed data.
Definition packet.h:580
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
uint16_t log2_cblk_height
Definition jpeg2000.h:219
Jpeg2000Prec * prec
Definition jpeg2000.h:222
uint16_t log2_cblk_width
Definition jpeg2000.h:219
int coord[2][2]
Definition jpeg2000.h:218
uint8_t * data
Definition jpeg2000.h:192
uint8_t nonzerobits
Definition jpeg2000.h:186
uint8_t ninclpasses
Definition jpeg2000.h:185
Jpeg2000Pass * passes
Definition jpeg2000.h:197
uint8_t npasses
Definition jpeg2000.h:184
Jpeg2000Layer * layers
Definition jpeg2000.h:198
uint8_t lblock
Definition jpeg2000.h:191
uint8_t incl
Definition jpeg2000.h:187
uint8_t log2_cblk_width
Definition jpeg2000.h:148
uint8_t log2_prec_widths[JPEG2000_MAX_RESLEVELS]
Definition jpeg2000.h:156
uint8_t log2_cblk_height
Definition jpeg2000.h:149
uint8_t log2_prec_heights[JPEG2000_MAX_RESLEVELS]
Definition jpeg2000.h:157
uint8_t comp_remap[4]
Definition j2kenc.c:120
AVCodecContext * avctx
Definition j2kenc.c:115
Jpeg2000Tile * tile
Definition j2kenc.c:137
int tile_height
tile size
Definition j2kenc.c:124
Jpeg2000CodingStyle codsty
Definition j2kenc.c:134
uint8_t cbps[4]
bits per sample in particular components
Definition j2kenc.c:119
uint8_t * buf_start
Definition j2kenc.c:127
Jpeg2000QuantStyle qntsty
Definition j2kenc.c:135
const AVFrame * picture
Definition j2kenc.c:116
int height
image width and height
Definition j2kenc.c:118
uint8_t compression_rate_enc
Is compression done using compression ratio?
Definition j2kenc.c:139
double disto
Definition jpeg2000.h:179
uint8_t * data_start
Definition jpeg2000.h:176
uint8_t flushed[4]
Definition jpeg2000.h:171
int flushed_len
Definition jpeg2000.h:172
uint16_t rate
Definition jpeg2000.h:169
int64_t disto
Definition jpeg2000.h:170
Jpeg2000Cblk * cblk
Definition jpeg2000.h:212
Jpeg2000TgtNode * zerobits
Definition jpeg2000.h:210
Jpeg2000TgtNode * cblkincl
Definition jpeg2000.h:211
int nb_codeblocks_height
Definition jpeg2000.h:209
int nb_codeblocks_width
Definition jpeg2000.h:208
uint16_t mant[JPEG2000_MAX_DECLEVELS *3]
Definition jpeg2000.h:163
uint8_t expn[JPEG2000_MAX_DECLEVELS *3]
Definition jpeg2000.h:162
uint8_t log2_prec_width
Definition jpeg2000.h:229
Jpeg2000Band * band
Definition jpeg2000.h:230
uint8_t log2_prec_height
Definition jpeg2000.h:229
int data[6144]
Definition jpeg2000.h:132
uint16_t flags[6156]
Definition jpeg2000.h:133
uint8_t temp_val
Definition jpeg2000.h:140
struct Jpeg2000TgtNode * parent
Definition jpeg2000.h:142
double * layer_rates
Definition j2kenc.c:110
Jpeg2000Component * comp
Definition j2kenc.c:109
uint8_t cx_states[19]
Definition mqc.h:45
#define av_malloc_array(a, b)
#define avpriv_request_sample(...)
#define av_freep(p)
#define av_log(a,...)
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
int size