001: /*
002: * $RCSfile: FileFormatBoxes.java,v $
003: * $Revision: 1.1 $
004: * $Date: 2005/02/11 05:02:10 $
005: * $State: Exp $
006: *
007: * Class: FileFormatMarkers
008: *
009: * Description: Contains definitions of boxes used in jp2 files
010: *
011: *
012: *
013: * COPYRIGHT:
014: *
015: * This software module was originally developed by Raphaël Grosbois and
016: * Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel
017: * Askelöf (Ericsson Radio Systems AB); and Bertrand Berthelot, David
018: * Bouchard, Félix Henry, Gerard Mozelle and Patrice Onno (Canon Research
019: * Centre France S.A) in the course of development of the JPEG2000
020: * standard as specified by ISO/IEC 15444 (JPEG 2000 Standard). This
021: * software module is an implementation of a part of the JPEG 2000
022: * Standard. Swiss Federal Institute of Technology-EPFL, Ericsson Radio
023: * Systems AB and Canon Research Centre France S.A (collectively JJ2000
024: * Partners) agree not to assert against ISO/IEC and users of the JPEG
025: * 2000 Standard (Users) any of their rights under the copyright, not
026: * including other intellectual property rights, for this software module
027: * with respect to the usage by ISO/IEC and Users of this software module
028: * or modifications thereof for use in hardware or software products
029: * claiming conformance to the JPEG 2000 Standard. Those intending to use
030: * this software module in hardware or software products are advised that
031: * their use may infringe existing patents. The original developers of
032: * this software module, JJ2000 Partners and ISO/IEC assume no liability
033: * for use of this software module or modifications thereof. No license
034: * or right to this software module is granted for non JPEG 2000 Standard
035: * conforming products. JJ2000 Partners have full right to use this
036: * software module for his/her own purpose, assign or donate this
037: * software module to any third party and to inhibit third parties from
038: * using this software module for non JPEG 2000 Standard conforming
039: * products. This copyright notice must be included in all copies or
040: * derivative works of this software module.
041: *
042: * Copyright (c) 1999/2000 JJ2000 Partners.
043: *
044: *
045: *
046: */
047: package jj2000.j2k.fileformat;
048:
049: /**
050: * This class contains all the markers used in the JPEG 2000 Part I file format
051: *
052: * @see jj2000.j2k.fileformat.writer.FileFormatWriter
053: *
054: * @see jj2000.j2k.fileformat.reader.FileFormatReader
055: *
056: */
057: public interface FileFormatBoxes {
058:
059: /**** Main boxes ****/
060:
061: public static final int JP2_SIGNATURE_BOX = 0x6a502020;
062:
063: public static final int FILE_TYPE_BOX = 0x66747970;
064:
065: public static final int JP2_HEADER_BOX = 0x6a703268;
066:
067: public static final int CONTIGUOUS_CODESTREAM_BOX = 0x6a703263;
068:
069: public static final int INTELLECTUAL_PROPERTY_BOX = 0x64703269;
070:
071: public static final int XML_BOX = 0x786d6c20;
072:
073: public static final int UUID_BOX = 0x75756964;
074:
075: public static final int UUID_INFO_BOX = 0x75696e66;
076:
077: /** JP2 Header boxes */
078: public static final int IMAGE_HEADER_BOX = 0x69686472;
079:
080: public static final int BITS_PER_COMPONENT_BOX = 0x62706363;
081:
082: public static final int COLOUR_SPECIFICATION_BOX = 0x636f6c72;
083:
084: public static final int PALETTE_BOX = 0x70636c72;
085:
086: public static final int COMPONENT_MAPPING_BOX = 0x636d6170;
087:
088: public static final int CHANNEL_DEFINITION_BOX = 0x63646566;
089:
090: public static final int RESOLUTION_BOX = 0x72657320;
091:
092: public static final int CAPTURE_RESOLUTION_BOX = 0x72657363;
093:
094: public static final int DEFAULT_DISPLAY_RESOLUTION_BOX = 0x72657364;
095:
096: /** End of JP2 Header boxes */
097:
098: /** UUID Info Boxes */
099: public static final int UUID_LIST_BOX = 0x75637374;
100:
101: public static final int URL_BOX = 0x75726c20;
102: /** end of UUID Info boxes */
103:
104: /** Image Header Box Fields */
105: public static final int IMB_VERS = 0x0100;
106:
107: public static final int IMB_C = 7;
108:
109: public static final int IMB_UnkC = 1;
110:
111: public static final int IMB_IPR = 0;
112: /** end of Image Header Box Fields*/
113:
114: /** Colour Specification Box Fields */
115: public static final int CSB_METH = 1;
116:
117: public static final int CSB_PREC = 0;
118:
119: public static final int CSB_APPROX = 0;
120:
121: public static final int CSB_ENUM_SRGB = 16;
122:
123: public static final int CSB_ENUM_GREY = 17;
124:
125: public static final int CSB_ENUM_YCC = 18;
126: /** en of Colour Specification Box Fields */
127:
128: /** File Type Fields */
129: public static final int FT_BR = 0x6a703220;
130:
131: }
|