Lines Matching refs:fmtops
77 jas_image_fmtops_t fmtops; in jas_init() local
83 fmtops.decode = mif_decode; in jas_init()
84 fmtops.encode = mif_encode; in jas_init()
85 fmtops.validate = mif_validate; in jas_init()
86 jas_image_addfmt(fmtid, "mif", "mif", "My Image Format (MIF)", &fmtops); in jas_init()
91 fmtops.decode = pnm_decode; in jas_init()
92 fmtops.encode = pnm_encode; in jas_init()
93 fmtops.validate = pnm_validate; in jas_init()
95 &fmtops); in jas_init()
97 &fmtops); in jas_init()
99 &fmtops); in jas_init()
104 fmtops.decode = bmp_decode; in jas_init()
105 fmtops.encode = bmp_encode; in jas_init()
106 fmtops.validate = bmp_validate; in jas_init()
107 jas_image_addfmt(fmtid, "bmp", "bmp", "Microsoft Bitmap (BMP)", &fmtops); in jas_init()
112 fmtops.decode = ras_decode; in jas_init()
113 fmtops.encode = ras_encode; in jas_init()
114 fmtops.validate = ras_validate; in jas_init()
115 jas_image_addfmt(fmtid, "ras", "ras", "Sun Rasterfile (RAS)", &fmtops); in jas_init()
120 fmtops.decode = jp2_decode; in jas_init()
121 fmtops.encode = jp2_encode; in jas_init()
122 fmtops.validate = jp2_validate; in jas_init()
124 "JPEG-2000 JP2 File Format Syntax (ISO/IEC 15444-1)", &fmtops); in jas_init()
126 fmtops.decode = jpc_decode; in jas_init()
127 fmtops.encode = jpc_encode; in jas_init()
128 fmtops.validate = jpc_validate; in jas_init()
130 "JPEG-2000 Code Stream Syntax (ISO/IEC 15444-1)", &fmtops); in jas_init()
135 fmtops.decode = jpg_decode; in jas_init()
136 fmtops.encode = jpg_encode; in jas_init()
137 fmtops.validate = jpg_validate; in jas_init()
138 jas_image_addfmt(fmtid, "jpg", "jpg", "JPEG (ISO/IEC 10918-1)", &fmtops); in jas_init()
143 fmtops.decode = pgx_decode; in jas_init()
144 fmtops.encode = pgx_encode; in jas_init()
145 fmtops.validate = pgx_validate; in jas_init()
146 jas_image_addfmt(fmtid, "pgx", "pgx", "JPEG-2000 VM Format (PGX)", &fmtops); in jas_init()