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 */ 047package jj2000.j2k.fileformat; 048 049 050/** 051 * This class contains all the markers used in the JPEG 2000 Part I file format 052 * 053 * @see jj2000.j2k.fileformat.writer.FileFormatWriter 054 * 055 * @see jj2000.j2k.fileformat.reader.FileFormatReader 056 * 057 */ 058public interface FileFormatBoxes{ 059 060 /**** Main boxes ****/ 061 062 public static final int JP2_SIGNATURE_BOX = 0x6a502020; 063 064 public static final int FILE_TYPE_BOX = 0x66747970; 065 066 public static final int JP2_HEADER_BOX = 0x6a703268; 067 068 public static final int CONTIGUOUS_CODESTREAM_BOX = 0x6a703263; 069 070 public static final int INTELLECTUAL_PROPERTY_BOX = 0x64703269; 071 072 public static final int XML_BOX = 0x786d6c20; 073 074 public static final int UUID_BOX = 0x75756964; 075 076 public static final int UUID_INFO_BOX = 0x75696e66; 077 078 /** JP2 Header boxes */ 079 public static final int IMAGE_HEADER_BOX = 0x69686472; 080 081 public static final int BITS_PER_COMPONENT_BOX = 0x62706363; 082 083 public static final int COLOUR_SPECIFICATION_BOX = 0x636f6c72; 084 085 public static final int PALETTE_BOX = 0x70636c72; 086 087 public static final int COMPONENT_MAPPING_BOX = 0x636d6170; 088 089 public static final int CHANNEL_DEFINITION_BOX = 0x63646566; 090 091 public static final int RESOLUTION_BOX = 0x72657320; 092 093 public static final int CAPTURE_RESOLUTION_BOX = 0x72657363; 094 095 public static final int DEFAULT_DISPLAY_RESOLUTION_BOX = 0x72657364; 096 097 /** End of JP2 Header boxes */ 098 099 /** UUID Info Boxes */ 100 public static final int UUID_LIST_BOX = 0x75637374; 101 102 public static final int URL_BOX = 0x75726c20; 103 /** end of UUID Info boxes */ 104 105 /** Image Header Box Fields */ 106 public static final int IMB_VERS = 0x0100; 107 108 public static final int IMB_C = 7; 109 110 public static final int IMB_UnkC = 1; 111 112 public static final int IMB_IPR = 0; 113 /** end of Image Header Box Fields*/ 114 115 /** Colour Specification Box Fields */ 116 public static final int CSB_METH = 1; 117 118 public static final int CSB_PREC = 0; 119 120 public static final int CSB_APPROX = 0; 121 122 public static final int CSB_ENUM_SRGB = 16; 123 124 public static final int CSB_ENUM_GREY = 17; 125 126 public static final int CSB_ENUM_YCC = 18; 127 /** en of Colour Specification Box Fields */ 128 129 /** File Type Fields */ 130 public static final int FT_BR = 0x6a703220; 131 132 133 134} 135 136 137 138 139