e342e01503cdc63d9b40d85b3fb396e14cfb63cd
[openjpeg.git] / tests / unit / testempty2.c
1 /*
2  * Copyright (c) 2012, Mathieu Malaterre
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
15  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
18  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24  * POSSIBILITY OF SUCH DAMAGE.
25  */
26 #include <assert.h>
27 #include <string.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30
31 #include "opj_config.h"
32 #include "openjpeg.h"
33
34 #define J2K_CFMT 0
35
36 void error_callback(const char *msg, void *v);
37 void warning_callback(const char *msg, void *v);
38 void info_callback(const char *msg, void *v);
39
40 void error_callback(const char *msg, void *v) {
41 (void)msg;
42 (void)v;
43 puts(msg);
44 }
45 void warning_callback(const char *msg, void *v) {
46 (void)msg;
47 (void)v;
48 puts(msg);
49 }
50 void info_callback(const char *msg, void *v) {
51 (void)msg;
52 (void)v;
53 puts(msg);
54 }
55
56 int main(int argc, char *argv[])
57 {
58   const char * v = opj_version();
59
60   const OPJ_COLOR_SPACE color_space = OPJ_CLRSPC_GRAY;
61   int numcomps = 1;
62   int i;
63   int image_width = 256;
64   int image_height = 256;
65
66   opj_cparameters_t parameters;
67
68   int subsampling_dx = parameters.subsampling_dx;
69   int subsampling_dy = parameters.subsampling_dy;
70   const char outputfile[] = "testempty2.j2k";
71
72   opj_image_cmptparm_t cmptparm;
73   opj_image_t *image;
74   opj_codec_t* l_codec = 00;
75   OPJ_BOOL bSuccess;
76   opj_stream_t *l_stream = 00;
77   (void)argc;
78   (void)argv;
79
80   opj_set_default_encoder_parameters(&parameters);
81   parameters.cod_format = J2K_CFMT;
82   puts(v);
83   cmptparm.prec = 8;
84   cmptparm.bpp = 8;
85   cmptparm.sgnd = 0;
86   cmptparm.dx = subsampling_dx;
87   cmptparm.dy = subsampling_dy;
88   cmptparm.w = image_width;
89   cmptparm.h = image_height;
90   strncpy(parameters.outfile, outputfile, sizeof(parameters.outfile)-1);
91
92   image = opj_image_create(numcomps, &cmptparm, color_space);
93   assert( image );
94
95   for (i = 0; i < image_width * image_height; i++)
96     {
97     int compno;
98     for(compno = 0; compno < numcomps; compno++)
99       {
100       image->comps[compno].data[i] = 0;
101       }
102     }
103
104   /* catch events using our callbacks and give a local context */
105   opj_set_info_handler(l_codec, info_callback,00);
106   opj_set_warning_handler(l_codec, warning_callback,00);
107   opj_set_error_handler(l_codec, error_callback,00);
108
109   l_codec = opj_create_compress(OPJ_CODEC_J2K);
110   opj_set_info_handler(l_codec, info_callback,00);
111   opj_set_warning_handler(l_codec, warning_callback,00);
112   opj_set_error_handler(l_codec, error_callback,00);
113
114   opj_setup_encoder(l_codec, &parameters, image);
115
116   l_stream = opj_stream_create_default_file_stream_v3(parameters.outfile,OPJ_FALSE);
117   if( !l_stream )
118     {
119     fprintf( stderr, "Something went wrong during creation of stream\n" );
120     opj_destroy_codec(l_codec);
121     opj_image_destroy(image);
122     opj_stream_destroy_v3(l_stream);
123     return 1;
124     }
125   assert(l_stream);
126   bSuccess = opj_start_compress(l_codec,image,l_stream);
127   if( !bSuccess )
128     {
129     opj_stream_destroy_v3(l_stream);
130     opj_destroy_codec(l_codec);
131     opj_image_destroy(image);
132     return 0;
133     }
134
135   assert( bSuccess );
136   bSuccess = opj_encode(l_codec, l_stream);
137   assert( bSuccess );
138   bSuccess = opj_end_compress(l_codec, l_stream);
139   assert( bSuccess );
140
141   opj_stream_destroy_v3(l_stream);
142
143   opj_destroy_codec(l_codec);
144   opj_image_destroy(image);
145
146
147   /* read back the generated file */
148 {
149   opj_codec_t* d_codec = 00;
150   opj_dparameters_t dparameters;
151
152   d_codec = opj_create_decompress(OPJ_CODEC_J2K);
153   opj_set_info_handler(d_codec, info_callback,00);
154   opj_set_warning_handler(d_codec, warning_callback,00);
155   opj_set_error_handler(d_codec, error_callback,00);
156
157   bSuccess = opj_setup_decoder(d_codec, &dparameters);
158   assert( bSuccess );
159
160   l_stream = opj_stream_create_default_file_stream_v3(outputfile,1);
161   assert( l_stream );
162
163   bSuccess = opj_read_header(l_stream, d_codec, &image);
164   assert( bSuccess );
165
166   bSuccess = opj_decode(l_codec, l_stream, image);
167   assert( bSuccess );
168
169   bSuccess = opj_end_decompress(l_codec, l_stream);
170   assert( bSuccess );
171
172   opj_stream_destroy_v3(l_stream);
173
174   opj_destroy_codec(d_codec);
175
176   opj_image_destroy(image);
177 }
178
179   puts( "end" );
180   return 0;
181 }