9a5f91fe34f2b8ad428ef14fb16239e4e4ceeff8
[openjpeg.git] / applications / jpip / libopenjpip / jpipstream_manager.c
1 /*
2  * $Id$
3  *
4  * Copyright (c) 2002-2011, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
5  * Copyright (c) 2002-2011, Professor Benoit Macq
6  * Copyright (c) 2010-2011, Kaori Hagihara
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <time.h>
35 #include "jpipstream_manager.h"
36 #include "jp2k_encoder.h"
37 #include "jp2k_decoder.h"
38 #include "ihdrbox_manager.h"
39 #include "j2kheader_manager.h"
40
41 Byte_t * update_JPIPstream( Byte_t *newstream, int newstreamlen, Byte_t *cache_stream, int *streamlen)
42 {
43   Byte_t *stream = (Byte_t *)malloc( (*streamlen)+newstreamlen);
44   if( *streamlen > 0)
45     memcpy( stream, cache_stream, *streamlen);
46   memcpy( stream+(*streamlen), newstream, newstreamlen);
47   *streamlen += newstreamlen;
48
49   if(cache_stream)
50     free( cache_stream);
51   
52   return stream;
53 }
54
55 void save_codestream( Byte_t *codestream, Byte8_t streamlen, char *fmt)
56 {
57   time_t timer;
58   struct tm *t_st;
59   char filename[20];
60   FILE *fp;
61
62   time(&timer);
63   t_st = localtime( &timer);
64   
65   sprintf( filename, "%4d%02d%02d%02d%02d%02d.%.3s", t_st->tm_year+1900, t_st->tm_mon+1, t_st->tm_mday, t_st->tm_hour, t_st->tm_min, t_st->tm_sec, fmt);
66
67   fp = fopen( filename, "wb");
68   if( fwrite( codestream, streamlen, 1, fp) != 1)
69     fprintf( stderr, "Error: failed to write codestream to file %s\n", filename);
70   fclose( fp);
71 }
72
73
74 Byte_t * jpipstream_to_pnm( Byte_t *jpipstream, msgqueue_param_t *msgqueue, Byte8_t csn, int fw, int fh, ihdrbox_param_t **ihdrbox)
75 {
76   Byte_t *pnmstream;
77   Byte_t *j2kstream; // j2k or jp2 codestream
78   Byte8_t j2klen;
79
80   j2kstream = recons_j2k( msgqueue, jpipstream, csn, fw, fh, &j2klen); 
81   pnmstream = j2k_to_pnm( j2kstream, j2klen, ihdrbox);
82
83   free( j2kstream);
84
85   return pnmstream;
86 }
87
88 ihdrbox_param_t * get_SIZ_from_jpipstream( Byte_t *jpipstream, msgqueue_param_t *msgqueue, Byte8_t csn)
89 {
90   ihdrbox_param_t *ihdrbox;
91   Byte_t *j2kstream;
92   Byte8_t j2klen;
93   SIZmarker_param_t SIZ;
94
95   j2kstream = recons_j2kmainhead( msgqueue, jpipstream, csn, &j2klen);
96   if( !get_mainheader_from_j2kstream( j2kstream, &SIZ, NULL)){
97     free( j2kstream);
98     return NULL;
99   }
100
101   ihdrbox = (ihdrbox_param_t *)malloc( sizeof(ihdrbox_param_t));
102
103   ihdrbox->width = SIZ.Xsiz;
104   ihdrbox->height = SIZ.Ysiz;
105   ihdrbox->nc = SIZ.Csiz;
106   ihdrbox->bpc = SIZ.Ssiz[0];
107   
108   free( j2kstream);
109
110   return ihdrbox;
111 }