[trunk][JPIP] enabled OpenJPEG V2 API
[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
39 Byte_t * update_JPIPstream( Byte_t *newstream, int newstreamlen, Byte_t *cache_stream, int *streamlen)
40 {
41   Byte_t *stream = (Byte_t *)malloc( (*streamlen)+newstreamlen);
42   if( *streamlen > 0)
43     memcpy( stream, cache_stream, *streamlen);
44   memcpy( stream+(*streamlen), newstream, newstreamlen);
45   *streamlen += newstreamlen;
46
47   if(cache_stream)
48     free( cache_stream);
49   
50   return stream;
51 }
52
53 void save_codestream( Byte_t *codestream, Byte8_t streamlen, char *fmt)
54 {
55   time_t timer;
56   struct tm *t_st;
57   char filename[20];
58   FILE *fp;
59
60   time(&timer);
61   t_st = localtime( &timer);
62   
63   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);
64
65   fp = fopen( filename, "wb");
66   fwrite( codestream, streamlen, 1, fp);
67   fclose( fp);
68 }
69
70
71 Byte_t * jpipstream_to_pnm( Byte_t *jpipstream, msgqueue_param_t *msgqueue, Byte8_t csn, int fw, int fh, ihdrbox_param_t **ihdrbox)
72 {
73   Byte_t *pnmstream;
74   Byte_t *j2kstream; // j2k or jp2 codestream
75   Byte8_t j2klen;
76   FILE *fp;
77   char j2kfname[] = "tmp.j2k";
78
79   j2kstream = recons_j2k( msgqueue, jpipstream, csn, fw, fh, &j2klen); 
80
81   fp = fopen( j2kfname, "w+b");
82   fwrite( j2kstream, j2klen, 1, fp);
83   free( j2kstream);
84   fseek( fp, 0, SEEK_SET);
85
86   pnmstream = j2k_to_pnm( fp, ihdrbox);
87
88   fclose( fp);
89   remove( j2kfname);
90
91   return pnmstream;
92 }