[trunk] fixed indentation in opj_compress.c, renamed 2 internal
[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 assert(0);
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
91   image = opj_image_create(numcomps, &cmptparm, color_space);
92   assert( image );
93
94   for (i = 0; i < image_width * image_height; i++)
95     {
96     int compno;
97     for(compno = 0; compno < numcomps; compno++)
98       {
99       image->comps[compno].data[i] = 0;
100       }
101     }
102
103     /* catch events using our callbacks and give a local context */             
104     opj_set_info_handler(l_codec, info_callback,00);
105     opj_set_warning_handler(l_codec, warning_callback,00);
106     opj_set_error_handler(l_codec, error_callback,00);
107
108   l_codec = opj_create_compress(OPJ_CODEC_J2K);
109   opj_set_info_handler(l_codec, info_callback,00);
110   opj_set_warning_handler(l_codec, warning_callback,00);
111   opj_set_error_handler(l_codec, error_callback,00);
112
113   opj_setup_encoder(l_codec, &parameters, image);
114
115   l_stream = opj_stream_create_default_file_stream_v3(parameters.outfile,OPJ_FALSE);
116   assert(l_stream);
117   bSuccess = opj_start_compress(l_codec,image,l_stream);
118
119   assert( bSuccess );
120   bSuccess = opj_encode(l_codec, l_stream);
121   assert( bSuccess );
122   bSuccess = opj_end_compress(l_codec, l_stream);
123   assert( bSuccess );
124
125   opj_stream_destroy_v3(l_stream);
126
127   opj_destroy_codec(l_codec);
128   opj_image_destroy(image);
129
130
131   /* read back the generated file */
132 {
133   opj_codec_t* d_codec = 00;
134         opj_dparameters_t dparameters;
135
136   d_codec = opj_create_decompress(OPJ_CODEC_J2K);
137   opj_set_info_handler(d_codec, info_callback,00);
138   opj_set_warning_handler(d_codec, warning_callback,00);
139   opj_set_error_handler(d_codec, error_callback,00);
140
141   bSuccess = opj_setup_decoder(d_codec, &dparameters);
142   assert( bSuccess );
143
144   l_stream = opj_stream_create_default_file_stream_v3(outputfile,1);
145   assert( l_stream );
146
147   bSuccess = opj_read_header(l_stream, d_codec, &image);
148   assert( bSuccess );
149
150   bSuccess = opj_decode(l_codec, l_stream, image);
151   assert( bSuccess );
152
153   bSuccess = opj_end_decompress(l_codec,        l_stream);
154   assert( bSuccess );
155
156   opj_stream_destroy_v3(l_stream);
157
158   opj_destroy_codec(d_codec);
159
160   opj_image_destroy(image);
161 }
162
163   puts( "end" );
164   return 0;
165 }