[b2.x.x] backport into 2.x.x the rev 2348 of trunk
[openjpeg.git] / tests / unit / testempty1.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
30 #include "opj_config.h"
31 #include "openjpeg.h"
32
33 #define J2K_CFMT 0
34
35 void error_callback(const char *msg, void *v);
36 void warning_callback(const char *msg, void *v);
37 void info_callback(const char *msg, void *v);
38
39 void error_callback(const char *msg, void *v) {
40 (void)msg;
41 (void)v;
42 assert(0);
43 }
44 void warning_callback(const char *msg, void *v) {
45 (void)msg;
46 (void)v;
47 puts(msg);
48 }
49 void info_callback(const char *msg, void *v) {
50 (void)msg;
51 (void)v;
52 puts(msg);
53 }
54
55 int main(int argc, char *argv[])
56 {
57   const char * v = opj_version();
58
59   const OPJ_COLOR_SPACE color_space = OPJ_CLRSPC_GRAY;
60   int numcomps = 1;
61   int i;
62   int image_width = 256;
63   int image_height = 256;
64
65   opj_cparameters_t parameters;
66
67   int subsampling_dx = 0;
68   int subsampling_dy = 0;
69
70   opj_image_cmptparm_t cmptparm;
71   opj_image_t *image;
72   opj_codec_t* l_codec = 00;
73   OPJ_BOOL bSuccess;
74   FILE *f;
75         opj_stream_t *l_stream = 00;
76   (void)argc;
77   (void)argv;
78
79   opj_set_default_encoder_parameters(&parameters);
80   parameters.cod_format = J2K_CFMT;
81   puts(v);
82   cmptparm.prec = 8;
83   cmptparm.bpp = 8;
84   cmptparm.sgnd = 0;
85   cmptparm.dx = subsampling_dx;
86   cmptparm.dy = subsampling_dy;
87   cmptparm.w = image_width;
88   cmptparm.h = image_height;
89
90   image = opj_image_create(numcomps, &cmptparm, color_space);
91   assert( image );
92
93   for (i = 0; i < image_width * image_height; i++)
94     {
95     int compno;
96     for(compno = 0; compno < numcomps; compno++)
97       {
98       image->comps[compno].data[i] = 0;
99       }
100     }
101
102                 /* catch events using our callbacks and give a local context */         \r
103                 opj_set_info_handler(l_codec, info_callback,00);\r
104                 opj_set_warning_handler(l_codec, warning_callback,00);\r
105                 opj_set_error_handler(l_codec, error_callback,00);
106
107   l_codec = opj_create_compress(OPJ_CODEC_J2K);
108   opj_set_info_handler(l_codec, info_callback,00);
109   opj_set_warning_handler(l_codec, warning_callback,00);
110   opj_set_error_handler(l_codec, error_callback,00);
111
112   opj_setup_encoder(l_codec, &parameters, image);
113
114   strcpy(parameters.outfile, "testempty1.j2k");
115   f = fopen(parameters.outfile, "wb");
116   assert( f );
117
118   l_stream = opj_stream_create_default_file_stream(f,OPJ_FALSE);
119   assert(l_stream);
120   bSuccess = opj_start_compress(l_codec,image,l_stream);
121
122   assert( bSuccess );
123   bSuccess = opj_encode(l_codec, l_stream);
124   assert( bSuccess );
125   bSuccess = opj_end_compress(l_codec, l_stream);
126   assert( bSuccess );
127
128   opj_stream_destroy(l_stream);
129   fclose(f);
130
131   opj_destroy_codec(l_codec);
132   opj_image_destroy(image);
133
134   puts( "end" );
135   return 0;
136 }