OpenJPH
Open-source implementation of JPEG2000 Part-15
Loading...
Searching...
No Matches
ojph_params_local.h
Go to the documentation of this file.
1//***************************************************************************/
2// This software is released under the 2-Clause BSD license, included
3// below.
4//
5// Copyright (c) 2019, Aous Naman
6// Copyright (c) 2019, Kakadu Software Pty Ltd, Australia
7// Copyright (c) 2019, The University of New South Wales, Australia
8//
9// Redistribution and use in source and binary forms, with or without
10// modification, are permitted provided that the following conditions are
11// met:
12//
13// 1. Redistributions of source code must retain the above copyright
14// notice, this list of conditions and the following disclaimer.
15//
16// 2. Redistributions in binary form must reproduce the above copyright
17// notice, this list of conditions and the following disclaimer in the
18// documentation and/or other materials provided with the distribution.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
21// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
26// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31//***************************************************************************/
32// This file is part of the OpenJPH software implementation.
33// File: ojph_params_local.h
34// Author: Aous Naman
35// Date: 28 August 2019
36//***************************************************************************/
37
38
39#ifndef OJPH_PARAMS_LOCAL_H
40#define OJPH_PARAMS_LOCAL_H
41
42#include <cstring>
43#include <cassert>
44
45#include "ojph_defs.h"
46#include "ojph_base.h"
47#include "ojph_arch.h"
48#include "ojph_message.h"
49
50namespace ojph {
51
53 class outfile_base;
54 class infile_base;
55
65
67 const char OJPH_PO_STRING_LRCP[] = "LRCP";
68 const char OJPH_PO_STRING_RLCP[] = "RLCP";
69 const char OJPH_PO_STRING_RPCL[] = "RPCL";
70 const char OJPH_PO_STRING_PCRL[] = "PCRL";
71 const char OJPH_PO_STRING_CPRL[] = "CPRL";
72
86
88 const char OJPH_PN_STRING_PROFILE0[] = "PROFILE0";
89 const char OJPH_PN_STRING_PROFILE1[] = "PROFILE1";
90 const char OJPH_PN_STRING_CINEMA2K[] = "CINEMA2K";
91 const char OJPH_PN_STRING_CINEMA4K[] = "CINEMA4K";
92 const char OJPH_PN_STRING_CINEMAS2K[] = "CINEMAS2K";
93 const char OJPH_PN_STRING_CINEMAS4K[] = "CINEMAS4K";
94 const char OJPH_PN_STRING_BROADCAST[] = "BROADCAST";
95 const char OJPH_PN_STRING_IMF[] = "IMF";
96
99 OJPH_TILEPART_NO_DIVISIONS = 0x0, // no divisions to tile parts
102 OJPH_TILEPART_LAYERS = 0x4, // these are meaningless with HTJ2K
103 OJPH_TILEPART_MASK = 0x3, // mask used for testing
104 };
105
106 namespace local {
107
108 //defined here
109 struct param_siz;
110 struct param_cod;
111 struct param_qcd;
112 struct param_cap;
113 struct param_sot;
114 struct param_tlm;
115 struct param_dfs;
116 struct param_atk;
117
120 {
121 SOC = 0xFF4F, //start of codestream (required)
122 CAP = 0xFF50, //extended capability
123 SIZ = 0xFF51, //image and tile size (required)
124 COD = 0xFF52, //coding style default (required)
125 COC = 0xFF53, //coding style component
126 TLM = 0xFF55, //tile-part lengths
127 PRF = 0xFF56, //profile
128 PLM = 0xFF57, //packet length, main header
129 PLT = 0xFF58, //packet length, tile-part header
130 CPF = 0xFF59, //corresponding profile values
131 QCD = 0xFF5C, //qunatization default (required)
132 QCC = 0xFF5D, //quantization component
133 RGN = 0xFF5E, //region of interest
134 POC = 0xFF5F, //progression order change
135 PPM = 0xFF60, //packed packet headers, main header
136 PPT = 0xFF61, //packed packet headers, tile-part header
137 CRG = 0xFF63, //component registration
138 COM = 0xFF64, //comment
139 DFS = 0xFF72, //downsampling factor styles
140 ADS = 0xFF73, //arbitrary decomposition styles
141 NLT = 0xFF76, //non-linearity point transformation
142 ATK = 0xFF79, //arbitrary transformation kernels
143 SOT = 0xFF90, //start of tile-part
144 SOP = 0xFF91, //start of packet
145 EPH = 0xFF92, //end of packet
146 SOD = 0xFF93, //start of data
147 EOC = 0xFFD9, //end of codestream (required)
148 };
149
151 //
152 //
153 //
154 //
155 //
163
166 {
167 friend ::ojph::param_siz;
168
169 public:
170 enum : ui16 {
172 RSIZ_HT_FLAG = 0x4000,
174 };
175
176 public:
179
180 void init()
181 {
182 Lsiz = Csiz = 0;
183 Xsiz = Ysiz = XOsiz = YOsiz = XTsiz = YTsiz = XTOsiz = YTOsiz = 0;
185 memset(store, 0, sizeof(store));
187 cod = NULL;
188 dfs = NULL;
190 cptr = store;
191 old_Csiz = sizeof(store) / sizeof(siz_comp_info);
192 }
193
194 void destroy()
195 { if (cptr != store) { delete[] cptr; cptr = NULL; } }
196
197 void set_num_components(ui32 num_comps)
198 {
199 Csiz = (ui16)num_comps;
200 if (Csiz > old_Csiz)
201 {
202 if (cptr != store)
203 delete[] cptr;
204 cptr = new siz_comp_info[num_comps];
205 old_Csiz = Csiz;
206 }
207 memset(cptr, 0, sizeof(local::siz_comp_info) * num_comps);
208 }
209
210 void set_comp_info(ui32 comp_num, const point& downsampling,
211 ui32 bit_depth, bool is_signed)
212 {
213 assert(comp_num < Csiz);
214 assert(downsampling.x != 0 && downsampling.y != 0);
215 cptr[comp_num].SSiz = (ui8)(bit_depth - 1 + (is_signed ? 0x80 : 0));
216 cptr[comp_num].XRsiz = (ui8)downsampling.x;
217 cptr[comp_num].YRsiz = (ui8)downsampling.y;
218 }
219
220 void set_image_extent(point dims) { Xsiz = dims.x; Ysiz = dims.y; }
221 point get_image_extent() const { return point(Xsiz, Ysiz); }
222 void set_tile_size(size s) { XTsiz = s.w; YTsiz = s.h; }
223 size get_tile_size() const { return size(XTsiz, YTsiz); }
225 { XOsiz = offset.x; YOsiz = offset.y; }
227 { return point(XOsiz, YOsiz); }
229 { XTOsiz = offset.x; YTOsiz = offset.y; }
231 { return point(XTOsiz, YTOsiz); }
232
233 void set_cod(const param_cod& cod) { this->cod = &cod; }
234
236 {
237 if (Xsiz == 0 || Ysiz == 0 || XTsiz == 0 || YTsiz == 0)
238 OJPH_ERROR(0x00040001,
239 "Image extent and/or tile size cannot be zero");
240 if (XTOsiz > XOsiz || YTOsiz > YOsiz)
241 OJPH_ERROR(0x00040002,
242 "Tile offset has to be smaller than the image offset");
243 if (XTsiz + XTOsiz <= XOsiz || YTsiz + YTOsiz <= YOsiz)
244 OJPH_ERROR(0x00040003,
245 "The top left tile must intersect with the image");
246 if (Xsiz <= XOsiz || Ysiz <= YOsiz)
247 OJPH_ERROR(0x00040004,
248 "The image extent must be larger than the image offset");
249 }
250
251 ui16 get_num_components() const { return Csiz; }
252 ui32 get_bit_depth(ui32 comp_num) const
253 {
254 assert(comp_num < Csiz);
255 return (cptr[comp_num].SSiz & 0x7F) + 1u;
256 }
257 bool is_signed(ui32 comp_num) const
258 {
259 assert(comp_num < Csiz);
260 return (cptr[comp_num].SSiz & 0x80) != 0;
261 }
263 {
264 assert(comp_num < Csiz);
265 return point(cptr[comp_num].XRsiz, cptr[comp_num].YRsiz);
266 }
267
268 bool write(outfile_base *file);
269 void read(infile_base *file);
270
271 void link(const param_cod* cod)
272 { this->cod = cod; }
273
274 void link(const param_dfs* dfs)
275 { this->dfs = dfs; }
276
278 { this->skipped_resolutions = skipped_resolutions; }
279
280 ui32 get_width(ui32 comp_num) const
281 {
282 assert(comp_num < get_num_components());
283 ui32 ds = (ui32)cptr[comp_num].XRsiz;
284 ui32 t = ojph_div_ceil(Xsiz, ds) - ojph_div_ceil(XOsiz, ds);
285 return t;
286 }
287
288 ui32 get_height(ui32 comp_num) const
289 {
290 assert(comp_num < get_num_components());
291 ui32 ds = (ui32)cptr[comp_num].YRsiz;
292 ui32 t = ojph_div_ceil(Ysiz, ds) - ojph_div_ceil(YOsiz, ds);
293 return t;
294 }
295
296 point get_recon_downsampling(ui32 comp_num) const;
297 point get_recon_size(ui32 comp_num) const;
298 ui32 get_recon_width(ui32 comp_num) const
299 { return get_recon_size(comp_num).x; }
300 ui32 get_recon_height(ui32 comp_num) const
301 { return get_recon_size(comp_num).y; }
302
305
307 { Rsiz |= flag; }
309 { Rsiz = (ui16)(Rsiz & ~flag); }
310
311 private:
324
325 private:
333 param_siz(const param_siz&) = delete; //prevent copy constructor
334 param_siz& operator=(const param_siz&) = delete; //prevent copy
335 };
336
338 //
339 //
340 //
341 //
342 //
345 {
347 num_decomp = 5;
348 block_width = 4; // 64
349 block_height = 4; // 64
350 block_style = 0x40; // HT mode
351 wavelet_trans = 0; // reversible 5 / 3
352 memset(precinct_size, 0, sizeof(precinct_size));
353 }
354
360 ui8 precinct_size[33]; //num_decomp is in [0,32]
361
363 { return size(block_width + 2, block_height + 2); }
365 { size t = get_log_block_dims(); return size(1 << t.w, 1 << t.h); }
367 {
368 assert(res_num <= num_decomp);
369 size ps(precinct_size[res_num] & 0xF, precinct_size[res_num] >> 4);
370 return ps;
371 }
372 };
373
382
385 {
386 // serves for both COD and COC markers
387 friend ::ojph::param_cod;
392
398
399 enum cod_type : ui8 {
403 COD_TILE = 3, // not implemented
404 COC_TILE = 4 // not implemented
405 };
406
407 enum dwt_type : ui8 {
410 };
411
412 public: // COD_MAIN and COC_MAIN common functions
416
418 void restart()
419 {
420 param_cod** p = &avail; // move next to the end of avail
421 while (*p != NULL)
422 p = &((*p)->next);
423 *p = next;
425 }
426
428 void set_reversible(bool reversible)
429 {
430 assert(type == UNDEFINED || type == COD_MAIN || type == COC_MAIN);
431 SPcod.wavelet_trans = reversible ? DWT_REV53 : DWT_IRV97;
432 }
433
436 {
437 assert(val == 0 || val == 1);
438 assert(type == UNDEFINED || type == COD_MAIN);
439 SGCod.mc_trans = val;
440 }
441
443 void check_validity(const param_siz& siz)
444 {
445 assert(type == COD_MAIN);
446
447 //check that colour transform and match number of components and
448 // downsampling
449 int num_comps = siz.get_num_components();
450 if (SGCod.mc_trans == 1 && num_comps < 3)
451 OJPH_ERROR(0x00040011,
452 "color transform can only be employed when the image has 3 or "
453 "more color components");
454
455 if (SGCod.mc_trans == 1)
456 {
457 bool test_signedness = false;
458 bool test_bit_depth = false;
459 bool test_downsampling = false;
460 point p = siz.get_downsampling(0);
461 ui32 bit_depth = siz.get_bit_depth(0);
462 bool is_signed = siz.is_signed(0);
463 for (ui32 i = 1; i < 3; ++i)
464 {
465 point p1 = siz.get_downsampling(i);
466 test_downsampling = test_downsampling
467 || (p.x != p1.x || p.y != p1.y);
468 test_bit_depth = test_bit_depth
469 || (bit_depth != siz.get_bit_depth(i));
470 test_signedness = test_signedness
471 || (is_signed != siz.is_signed(i));
472 }
473 if (test_downsampling)
474 OJPH_ERROR(0x00040012,
475 "when color transform is used, the first 3 colour components "
476 "must have the same downsampling factor.");
477 if (test_bit_depth)
478 OJPH_ERROR(0x00040014,
479 "when color transform is used, the first 3 colour components "
480 "must have the same bit depth.");
481 if (test_signedness)
482 OJPH_ERROR(0x00040015,
483 "when color transform is used, the first 3 colour components "
484 "must have the same signedness (signed or unsigned).");
485
486 }
487
488 //check the progression order matches downsampling
489 if (SGCod.prog_order == OJPH_PO_RPCL ||
490 SGCod.prog_order == OJPH_PO_PCRL)
491 {
492 ui32 num_comps = siz.get_num_components();
493 for (ui32 i = 0; i < num_comps; ++i)
494 {
495 point r = siz.get_downsampling(i);
496 if (r.x & (r.x - 1) || r.y & (r.y - 1))
497 OJPH_ERROR(0x00040013, "For RPCL and PCRL progression orders,"
498 "component downsampling factors have to be powers of 2");
499 }
500 }
501 }
502
505 {
506 if (type == COD_MAIN)
507 return SPcod.num_decomp;
508 else if (type == COC_MAIN)
509 {
510 if (is_dfs_defined())
511 return top_cod->get_num_decompositions();
512 else
513 return SPcod.num_decomp;
514 }
515 else {
516 assert(0);
517 return 0; // just in case
518 }
519 }
520
523 { return SPcod.get_block_dims(); }
524
527 { return SPcod.get_log_block_dims(); }
528
531 { return SPcod.wavelet_trans; }
532
534 bool is_reversible() const;
535
538 {
539 if (type == COD_MAIN || type == COD_TILE)
540 return (SGCod.mc_trans == 1);
541 else
542 return top_cod->is_employing_color_transform();
543 }
544
547 {
548 size t = get_log_precinct_size(res_num);
549 return size(1 << t.w, 1 << t.h);
550 }
551
554 {
555 if (Scod & 1)
556 return SPcod.get_log_precinct_size(res_num);
557 else
558 return size(15, 15);
559 }
560
563 {
564 if (type == COD_MAIN || type == COD_TILE)
565 return (Scod & 2) == 2;
566 return false;
567 }
568
570 bool packets_use_eph() const
571 {
572 if (type == COD_MAIN || type == COD_TILE)
573 return (Scod & 4) == 4;
574 return false;
575 }
576
579 { return (SPcod.block_style & local::param_cod::VERT_CAUSAL_MODE) != 0; }
580
582 bool write(outfile_base *file);
583
585 bool write_coc(outfile_base *file, ui32 num_comps);
586
588 void read(infile_base *file);
589
591 void read_coc(infile_base* file, ui32 num_comps, param_cod* top_cod);
592
594 void update_atk(param_atk* atk);
595
597 const param_cod* get_coc(ui32 comp_idx) const;
598
601
604
607
609 const param_atk* access_atk() const { return atk; }
610
611 public: // COC_MAIN only functions
613 bool is_dfs_defined() const
614 { return (SPcod.num_decomp & 0x80) != 0; }
615
617 ui16 get_dfs_index() const // cannot be more than 15
618 { return SPcod.num_decomp & 0xF; }
619
622 {
623 assert((type == COC_MAIN && comp_idx != OJPH_COD_DEFAULT) ||
625 return comp_idx;
626 }
627
628 private:
631 {
633 Lcod = 0;
634 Scod = 0;
635 SPcod = cod_SPcod(); // SPcod is initialized to default values
636 next = NULL;
637 atk = NULL;
638 // For COC marker segment:
639 // Lcod will be initialized on writing the marker segment to disk
640 // Scod is initialized to 0
641 // SGcod does not exist in COC
642 // SPcoc is initialized to default values
643 // atk is initialized to NULL
644 this->top_cod = top_cod;
645 this->comp_idx = comp_idx;
646 }
647
649 void destroy() {
650 if (avail)
651 delete avail;
652 if (next) {
653 delete next;
654 next = NULL;
655 }
656 }
657
658 private:
659 bool internal_write_coc(outfile_base *file, ui32 num_comps);
660
662 private: // Common variables
663 cod_type type; // The type of this cod structure
664 ui16 Lcod; // serves as Lcod and Scod
665 ui8 Scod; // serves as Scod and Scoc
666 cod_SGcod SGCod; // Used in COD and copied to COC
667 cod_SPcod SPcod; // serves as SPcod and SPcoc
668 param_cod* next; // to chain coc parameters to cod
669 const param_atk* atk; // used to read transform information
670
671 private: // COC only variables
672 param_cod* top_cod; // parent COD structure
673 ui16 comp_idx; // component index of this COC structure
674
675 private: // on restart, already allocated param_cod objs are stored here
677 };
678
680 //
681 //
682 //
683 //
684 //
687 {
688 // serves for both QCD and QCC markers
689 friend ::ojph::param_qcd;
694
696 enum qcd_type : ui8 {
700 QCD_TILE = 3, // not implemented
701 QCC_TILE = 4 // not implemented
702 };
703
708
711
712 public:
716
718 void restart()
719 {
720 param_qcd** p = &avail; // move next to the end of avail
721 while (*p != NULL)
722 p = &((*p)->next);
723 *p = next;
725 }
726
727 void check_validity(const param_siz& siz, const param_cod& cod);
728 void make_quant_steps(ui32 comp_num, const param_cod &cod,
729 const param_siz &siz);
730 bool is_qcc_needed(ui32 comp_num, const param_cod &cod,
731 const param_siz &siz);
732 void set_delta(float delta) { base_delta = delta; }
733 void set_qfactor(ui8 qfactor);
734 ui32 get_num_guard_bits() const;
735 ui32 get_MAGB() const;
736 ui32 get_Kmax(const param_dfs* dfs, ui32 num_decompositions,
737 ui32 resolution, ui32 subband) const;
738 ui32 propose_precision(const param_cod* cod) const;
739 float get_irrev_delta(const param_dfs* dfs,
740 ui32 num_decompositions, ui32 comp_num,
741 ui32 resolution, ui32 subband) const;
742 bool write(outfile_base *file);
743 bool write_qcc(outfile_base *file, ui32 num_comps);
744 void read(infile_base *file);
745 void read_qcc(infile_base *file, ui32 num_comps);
746
747 void set_delta(ui32 comp_idx, float delta);
750 const param_qcd* get_qcc(ui32 comp_idx) const;
752 ui16 get_comp_idx() const { return comp_idx; }
753
754 private:
757 {
758 is_init = false;
760 Lqcd = 0;
761 Sqcd = 0;
762 memset(&SPqcd, 0, sizeof(SPqcd));
763 num_subbands = 0;
764 base_delta = -1.0f;
766 ctype = comp_type::OJPH_COMP_Y;
767 sampling = ojph::point(1, 1);
768 enabled = true;
769 next = NULL;
770 this->top_qcd = top_qcd;
771 this->comp_idx = comp_idx;
772 }
773
775 void destroy() {
776 if (avail)
777 delete avail;
778 if (next)
779 {
780 delete next;
781 next = NULL;
782 }
783 }
784
785 private:
787 bool is_employing_color_transform);
789 void encode_SPqcd(ui32 subband_index, float delta);
790 ui32 get_largest_Kmax() const;
791 bool internal_write_qcc(outfile_base *file, ui32 num_comps);
792 void trim_non_existing_components(ui32 num_comps);
793
795 { return (ui8)(v >> 3); }
797 { return (ui8)(v << 3); }
798
799 private: // QCD variables
801 bool is_init; // have the quantization steps been generated
804 union
805 {
806 ui8 u8[97];
809 ui32 num_subbands; // number of subbands
810 bool enabled; // enabled if two, and ignored if false
811 param_qcd *next; // pointer to create chains of qcc marker segments
812 param_qcd *top_qcd; // pointer to the top QCD (this is the default)
813
814 // variables used to generate the quantization step sizes
815 float base_delta; // base quantization step size -- all other
816 // step sizes are derived from it.
825
826 private: // QCC only variables
828
829 private: // on restart, already allocated param_qcd objs are stored here
831 };
832
834 //
835 //
836 //
837 //
838 //
840 // data structures used by param_nlt
842 {
845 public:
846 param_nlt() { avail = NULL; init(); }
848
850 void restart()
851 {
852 param_nlt** p = &avail; // move next to the end of avail
853 while (*p != NULL)
854 p = &((*p)->next);
855 *p = next;
856 this->init();
857 }
858
859 void check_validity(param_siz& siz);
860 void set_nonlinear_transform(ui32 comp_num, ui8 nl_type);
861 bool get_nonlinear_transform(ui32 comp_num, ui8& bit_depth,
862 bool& is_signed, ui8& nl_type) const;
863 bool write(outfile_base* file) const;
864 void read(infile_base* file);
865
866 private:
868 void init()
869 {
870 Lnlt = 6;
871 Cnlt = special_comp_num::ALL_COMPS; // default
872 BDnlt = 0;
873 Tnlt = nonlinearity::OJPH_NLT_UNDEFINED;
874 enabled = false; next = NULL;
875 }
876
878 void destroy()
879 {
880 if (avail)
881 delete avail;
882 if (next) {
883 delete next;
884 next = NULL;
885 }
886 }
887
888 private:
889 const param_nlt* get_nlt_object(ui32 comp_num) const;
890 param_nlt* get_nlt_object(ui32 comp_num);
891 param_nlt* add_object(ui32 comp_num);
892 bool is_any_enabled() const;
893 void trim_non_existing_components(ui32 num_comps);
894
895 private:
896 ui16 Lnlt; // length of the marker segment excluding marker
897 ui16 Cnlt; // Component involved in the transformation
898 ui8 BDnlt; // Decoded image component bit depth parameter
899 ui8 Tnlt; // Type of non-linearity
900 bool enabled; // true if this object is used
901 param_nlt* next; // for chaining NLT markers
902
903 // The top level param_nlt object is not allocated, but as part of
904 // codestream, and is used to manage allocated next objects.
905 // next holds a list of param_nlt objects, which are managed by the top
906 // param_nlt object.
907
908 private: // on restart, already allocated param_nlt objs are stored here
910 };
911
913 //
914 //
915 //
916 //
917 //
920 {
921 public:
923 {
924 memset(this, 0, sizeof(param_cap));
925 Lcap = 8;
926 Pcap = 0x00020000; //for jph, Pcap^15 must be set, the 15th MSB
927 }
928
929 void check_validity(const param_cod& cod, const param_qcd& qcd)
930 {
932 Ccap[0] &= 0xFFDF;
933 else
934 Ccap[0] |= 0x0020;
935 Ccap[0] &= 0xFFE0;
936 ui32 Bp = 0;
937 ui32 B = qcd.get_MAGB();
938 if (B <= 8)
939 Bp = 0;
940 else if (B < 28)
941 Bp = B - 8;
942 else
943 Bp = 13 + (B >> 2);
944 Ccap[0] = (ui16)(Ccap[0] | (ui16)Bp);
945 }
946
947 bool write(outfile_base *file);
948 void read(infile_base *file);
949
950 private:
953 ui16 Ccap[32]; //a maximum of 32
954 };
955
956
958 //
959 //
960 //
961 //
962 //
965 {
966 public:
967 void init(ui32 payload_length = 0, ui16 tile_idx = 0,
968 ui8 tile_part_index = 0, ui8 num_tile_parts = 0)
969 {
970 Lsot = 10;
971 Psot = payload_length + 12; //total = payload + SOT marker
972 Isot = tile_idx;
973 TPsot = tile_part_index;
974 TNsot = num_tile_parts;
975 }
976
977 bool write(outfile_base *file, ui32 payload_len);
978 bool write(outfile_base *file, ui32 payload_len, ui8 TPsot, ui8 TNsot);
979 bool read(infile_base *file, bool resilient);
980
981 ui16 get_tile_index() const { return Isot; }
982 ui32 get_payload_length() const { return Psot > 0 ? Psot - 12 : 0; }
983 ui8 get_tile_part_index() const { return TPsot; }
984 ui8 get_num_tile_parts() const { return TNsot; }
985
986 private:
992 };
993
995 //
996 //
997 //
998 //
999 //
1002 {
1004 {
1007 };
1008
1009 public:
1010 param_tlm() { pairs = NULL; num_pairs = 0; next_pair_index = 0; };
1011 void init(ui32 num_pairs, Ttlm_Ptlm_pair* store);
1012
1013 void set_next_pair(ui16 Ttlm, ui32 Ptlm);
1014 bool write(outfile_base *file);
1015
1016 private:
1023 };
1024
1026 //
1027 //
1028 //
1029 //
1030 //
1033 {
1034 public:
1036 NO_DWT = 0, // no wavelet transform
1037 BIDIR_DWT = 1, // bidirectional DWT (this the conventional DWT)
1038 HORZ_DWT = 2, // horizontal only DWT transform
1039 VERT_DWT = 3, // vertical only DWT transform
1040 };
1041
1042 public: // member functions
1043 param_dfs() { avail = NULL; init(); }
1045
1047 void restart()
1048 {
1049 param_dfs** p = &avail; // move next to the end of avail
1050 while (*p != NULL)
1051 p = &((*p)->next);
1052 *p = next;
1053 this->init();
1054 }
1055
1056 bool read(infile_base *file);
1057 bool exists() const { return Ldfs != 0; }
1058
1059 // get_dfs return a dfs structure Sdfs == index, or NULL if not found
1060 const param_dfs* get_dfs(int index) const;
1061 // decomp_level is the decomposition level, starting from 1 for highest
1062 // resolution to num_decomps for the coarsest resolution
1063 dfs_dwt_type get_dwt_type(ui32 decomp_level) const;
1064 ui32 get_subband_idx(ui32 num_decompositions, ui32 resolution,
1065 ui32 subband) const;
1066 point get_res_downsamp(ui32 skipped_resolutions) const;
1067
1068 private:
1070 void init()
1071 { Ldfs = Sdfs = Ids = 0; memset(Ddfs, 0, sizeof(Ddfs)); next = NULL; }
1072
1074 void destroy()
1075 {
1076 if (avail)
1077 delete avail;
1078 if (next) {
1079 delete next;
1080 next = NULL;
1081 }
1082 }
1083
1084 private: // member variables
1085 ui16 Ldfs; // length of the segment marker
1086 ui16 Sdfs; // index of this DFS marker segment
1087 ui8 Ids; // number of elements in Ddfs, 2 bits per sub-level
1088 ui8 Ddfs[8]; // a string defining number of decomposition sub-levels
1089 // 8 bytes should be enough for 32 levels
1090 param_dfs* next; // used for linking other dfs segments
1091
1092 private: // on restart, already allocated param_dfs objs are stored here
1094 };
1095
1097 //
1098 //
1099 //
1100 //
1101 //
1103 // data structures used by param_atk
1104
1106 struct irv_data {
1107 // si8 Oatk; // only for arbitrary filter
1108 // ui8 LCatk; // number of lifting coefficients in a step
1109 float Aatk; // lifting coefficient
1110 };
1111
1112 struct rev_data {
1113 // si8 Oatk; // only for arbitrary filter, offset of filter
1114 ui8 Eatk; // only for reversible, epsilon, the power of 2
1115 si16 Batk; // only for reversible, beta, the additive residue
1116 // ui8 LCatk; // number of lifting coefficients in a step
1117 si16 Aatk; // lifting coefficient
1118 };
1119
1122 };
1123
1125 {
1126 // Limitations:
1127 // Arbitrary filters (ARB) are not supported
1128 // Only one coefficient per step -- first order filter
1129 // Only even-indexed subsequence in first reconstruction step,
1130 // m_init = 0 is supported
1131 public: // member functions
1133 {
1134 d = d_store;
1135 max_steps = sizeof(d_store) / sizeof(lifting_step);
1136 init(NULL);
1137 }
1139 {
1140 if (avail) {
1141 delete avail;
1142 avail = NULL;
1143 }
1144 if (next) {
1145 delete next;
1146 next = NULL;
1147 }
1148 if (d != NULL && d != d_store) {
1149 delete[] d;
1150 d = d_store;
1151 max_steps = sizeof(d_store) / sizeof(lifting_step);
1152 }
1153 }
1154
1156 void restart()
1157 {
1158 assert(top_atk == NULL);
1159
1160 Latk = Satk = 0;
1161 Katk = 0.0f;
1162 Natk = 0;
1163 if (d == NULL || d == d_store) {
1164 d = d_store;
1165 max_steps = sizeof(d_store) / sizeof(lifting_step);
1166 }
1167 memset(d, 0, max_steps * sizeof(lifting_step));
1168
1169 param_atk** p = &avail; // move next to the end of avail
1170 while (*p != NULL)
1171 p = &((*p)->next);
1172 *p = next;
1173
1174 next = NULL;
1175 }
1176
1177 bool read(infile_base *file);
1178
1179 ui8 get_index() const { return (ui8)(Satk & 0xFF); }
1180 int get_coeff_type() const { return (Satk >> 8) & 0x7; }
1181 bool is_whole_sample() const { return (Satk & 0x800) != 0; }
1182 bool is_reversible() const { return (Satk & 0x1000) != 0; }
1183 bool is_m_init0() const { return (Satk & 0x2000) == 0; }
1184 bool is_using_ws_extension() const { return (Satk & 0x4000) != 0; }
1185 param_atk* get_atk(int index);
1187 { assert(s < Natk); return d + s; }
1188 ui32 get_num_steps() const { return Natk; }
1189 float get_K() const { return Katk; }
1190
1191 private:
1194 {
1195 Latk = Satk = 0;
1196 Katk = 0.0f;
1197 Natk = 0;
1198 if (d == NULL || d == d_store) {
1199 d = d_store;
1200 max_steps = sizeof(d_store) / sizeof(lifting_step);
1201 }
1202 memset(d, 0, max_steps * sizeof(lifting_step));
1203 next = NULL;
1204 this->top_atk = top_atk;
1205 avail = NULL;
1206 }
1207 private:
1208 bool read_coefficient(infile_base *file, float &K, si32& bytes);
1209 bool read_coefficient(infile_base *file, si16 &K, si32& bytes);
1210
1211 void init_irv97();
1212 void init_rev53();
1214
1215 private: // member variables
1216 ui16 Latk; // structure length
1217 ui16 Satk; // carries a variety of information
1218 float Katk; // only for irreversible scaling factor K
1219 ui8 Natk; // number of lifting steps
1220 lifting_step* d; // pointer to data, initialized to d_store
1221 ui32 max_steps; // maximum number of steps without memory allocation
1222 lifting_step d_store[6]; // lifting step coefficient
1223 param_atk* next; // used for chaining if more than one atk segment
1224 // exist in the codestream
1225 param_atk* top_atk;// This is the top level atk, from which all atk
1226 // objects are derived
1227
1228 private: // on restart, already allocated param_atk objs are stored here
1230 };
1231 } // !local namespace
1232} // !ojph namespace
1233
1234#endif // !OJPH_PARAMS_LOCAL_H
const char OJPH_PN_STRING_BROADCAST[]
const char OJPH_PN_STRING_CINEMAS4K[]
const char OJPH_PO_STRING_PCRL[]
const char OJPH_PN_STRING_IMF[]
const char OJPH_PN_STRING_CINEMA4K[]
uint16_t ui16
Definition ojph_defs.h:52
const char OJPH_PO_STRING_RLCP[]
const char OJPH_PN_STRING_CINEMA2K[]
const char OJPH_PO_STRING_RPCL[]
OJPH_TILEPART_DIVISIONS
@ OJPH_TILEPART_RESOLUTIONS
@ OJPH_TILEPART_NO_DIVISIONS
@ OJPH_TILEPART_LAYERS
@ OJPH_TILEPART_COMPONENTS
const char OJPH_PO_STRING_CPRL[]
@ OJPH_PN_BROADCAST
@ OJPH_PN_CINEMAS4K
@ OJPH_PN_UNDEFINED
@ OJPH_PN_CINEMAS2K
int32_t si32
Definition ojph_defs.h:55
const char OJPH_PN_STRING_PROFILE0[]
int16_t si16
Definition ojph_defs.h:53
const char OJPH_PN_STRING_CINEMAS2K[]
uint32_t ui32
Definition ojph_defs.h:54
uint8_t ui8
Definition ojph_defs.h:50
const char OJPH_PO_STRING_LRCP[]
const char OJPH_PN_STRING_PROFILE1[]
#define ojph_div_ceil(a, b)
Definition ojph_defs.h:70
#define OJPH_ERROR(t,...)
size get_log_precinct_size(ui32 res_num) const
bool read_coefficient(infile_base *file, float &K, si32 &bytes)
void init(param_atk *top_atk)
bool read(infile_base *file)
param_atk * get_atk(int index)
const lifting_step * get_step(ui32 s) const
void check_validity(const param_cod &cod, const param_qcd &qcd)
void read(infile_base *file)
bool write(outfile_base *file)
void check_validity(const param_siz &siz)
bool write(outfile_base *file)
const param_cod * get_coc(ui32 comp_idx) const
bool internal_write_coc(outfile_base *file, ui32 num_comps)
bool write_coc(outfile_base *file, ui32 num_comps)
void set_reversible(bool reversible)
bool is_employing_color_transform() const
void employ_color_transform(ui8 val)
bool get_block_vertical_causality() const
const param_atk * access_atk() const
void read(infile_base *file)
size get_log_precinct_size(ui32 res_num) const
void init(param_cod *top_cod, ui16 comp_idx)
void read_coc(infile_base *file, ui32 num_comps, param_cod *top_cod)
void update_atk(param_atk *atk)
size get_precinct_size(ui32 res_num) const
param_cod * get_or_add_coc(ui32 comp_idx)
param_cod(param_cod *top_cod=NULL, ui16 comp_idx=OJPH_COD_DEFAULT)
param_cod * add_coc_object(ui32 comp_idx)
bool read(infile_base *file)
dfs_dwt_type get_dwt_type(ui32 decomp_level) const
point get_res_downsamp(ui32 skipped_resolutions) const
ui32 get_subband_idx(ui32 num_decompositions, ui32 resolution, ui32 subband) const
const param_dfs * get_dfs(int index) const
ojph::param_nlt::special_comp_num special_comp_num
bool write(outfile_base *file) const
param_nlt * add_object(ui32 comp_num)
void trim_non_existing_components(ui32 num_comps)
void read(infile_base *file)
ojph::param_nlt::nonlinearity nonlinearity
bool get_nonlinear_transform(ui32 comp_num, ui8 &bit_depth, bool &is_signed, ui8 &nl_type) const
const param_nlt * get_nlt_object(ui32 comp_num) const
void check_validity(param_siz &siz)
void set_nonlinear_transform(ui32 comp_num, ui8 nl_type)
ui8 encode_SPqcd(ui8 v) const
bool write_qcc(outfile_base *file, ui32 num_comps)
float get_irrev_delta(const param_dfs *dfs, ui32 num_decompositions, ui32 comp_num, ui32 resolution, ui32 subband) const
void set_rev_quant(ui32 num_decomps, ui32 bit_depth, bool is_employing_color_transform)
void set_qfactor(ui8 qfactor)
void set_irrev_quant(ui32 num_decomps)
ui32 get_largest_Kmax() const
ui32 get_num_guard_bits() const
void set_delta(float delta)
void read_qcc(infile_base *file, ui32 num_comps)
void check_validity(const param_siz &siz, const param_cod &cod)
bool write(outfile_base *file)
ui32 propose_precision(const param_cod *cod) const
void read(infile_base *file)
bool is_qcc_needed(ui32 comp_num, const param_cod &cod, const param_siz &siz)
void make_quant_steps(ui32 comp_num, const param_cod &cod, const param_siz &siz)
void init(param_qcd *top_qcd, ui16 comp_idx)
param_qcd * add_qcc_object(ui32 comp_idx)
ui32 get_Kmax(const param_dfs *dfs, ui32 num_decompositions, ui32 resolution, ui32 subband) const
ojph::param_qcd::comp_type comp_type
void encode_SPqcd(ui32 subband_index, float delta)
ui8 decode_SPqcd(ui8 v) const
param_qcd * get_qcc(ui32 comp_idx)
param_qcd(param_qcd *top_qcd=NULL, ui16 comp_idx=OJPH_QCD_DEFAULT)
void trim_non_existing_components(ui32 num_comps)
bool internal_write_qcc(outfile_base *file, ui32 num_comps)
union ojph::local::param_qcd::@140013103227173134364232343330020031205064137337 SPqcd
void set_skipped_resolutions(ui32 skipped_resolutions)
ui32 get_bit_depth(ui32 comp_num) const
ui32 get_recon_height(ui32 comp_num) const
bool is_signed(ui32 comp_num) const
void set_image_offset(point offset)
bool write(outfile_base *file)
param_siz(const param_siz &)=delete
point get_recon_downsampling(ui32 comp_num) const
void set_Rsiz_flag(ui16 flag)
point get_recon_size(ui32 comp_num) const
void set_cod(const param_cod &cod)
ui32 get_height(ui32 comp_num) const
void set_comp_info(ui32 comp_num, const point &downsampling, ui32 bit_depth, bool is_signed)
void link(const param_cod *cod)
point get_downsampling(ui32 comp_num) const
void reset_Rsiz_flag(ui16 flag)
void set_tile_offset(point offset)
void read(infile_base *file)
param_siz & operator=(const param_siz &)=delete
void link(const param_dfs *dfs)
void set_num_components(ui32 num_comps)
void set_image_extent(point dims)
ui32 get_width(ui32 comp_num) const
ui32 get_recon_width(ui32 comp_num) const
void init(ui32 payload_length=0, ui16 tile_idx=0, ui8 tile_part_index=0, ui8 num_tile_parts=0)
bool read(infile_base *file, bool resilient)
bool write(outfile_base *file, ui32 payload_len)
void set_next_pair(ui16 Ttlm, ui32 Ptlm)
bool write(outfile_base *file)
void init(ui32 num_pairs, Ttlm_Ptlm_pair *store)