about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2012-10-19 03:32:08 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2012-10-19 03:32:08 +0000
commit4f9fe4469128aba7143155947210a380baf09fed (patch)
treea625b944d05bbc57cd0edd4b93e01ba9b0a18672 /converter/other
parent61e565c89671d9d980bb75d2a9d636b409117920 (diff)
downloadnetpbm-mirror-4f9fe4469128aba7143155947210a380baf09fed.tar.gz
netpbm-mirror-4f9fe4469128aba7143155947210a380baf09fed.tar.xz
netpbm-mirror-4f9fe4469128aba7143155947210a380baf09fed.zip
cleanup
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1752 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r--converter/other/jpeg2000/libjasper/base/jas_image.c4
-rw-r--r--converter/other/jpeg2000/libjasper/jpc/jpc_dec.c14
2 files changed, 10 insertions, 8 deletions
diff --git a/converter/other/jpeg2000/libjasper/base/jas_image.c b/converter/other/jpeg2000/libjasper/base/jas_image.c
index 5660ff0c..8d62b48d 100644
--- a/converter/other/jpeg2000/libjasper/base/jas_image.c
+++ b/converter/other/jpeg2000/libjasper/base/jas_image.c
@@ -375,9 +375,9 @@ static void jas_image_cmpt_destroy(jas_image_cmpt_t *cmpt)
 	jas_free(cmpt);
 }
 
-/******************************************************************************\
+/*****************************************************************************\
 * Load and save operations.
-\******************************************************************************/
+\*****************************************************************************/
 
 jas_image_t *jas_image_decode(jas_stream_t *in, int fmt, char *optstr)
 {
diff --git a/converter/other/jpeg2000/libjasper/jpc/jpc_dec.c b/converter/other/jpeg2000/libjasper/jpc/jpc_dec.c
index e4c395e2..72bd0126 100644
--- a/converter/other/jpeg2000/libjasper/jpc/jpc_dec.c
+++ b/converter/other/jpeg2000/libjasper/jpc/jpc_dec.c
@@ -114,14 +114,16 @@
  * $Id$
  */
 
-/******************************************************************************\
+/*****************************************************************************\
 * Includes.
-\******************************************************************************/
+\*****************************************************************************/
 
 #include <stdio.h>
 #include <stdlib.h>
 #include <assert.h>
 
+#include "pm.h"
+
 #include "jasper/jas_types.h"
 #include "jasper/jas_math.h"
 #include "jasper/jas_tvp.h"
@@ -136,9 +138,9 @@
 #include "jpc_t1dec.h"
 #include "jpc_math.h"
 
-/******************************************************************************\
+/*****************************************************************************\
 *
-\******************************************************************************/
+\*****************************************************************************/
 
 #define JPC_MHSOC   0x0001
   /* In the main header, expecting a SOC marker segment. */
@@ -275,9 +277,9 @@ jpc_dec_mstabent_t jpc_dec_mstab[] = {
     {0, JPC_MH | JPC_TPH, jpc_dec_process_unk}
 };
 
-/******************************************************************************\
+/*****************************************************************************\
 * The main entry point for the JPEG-2000 decoder.
-\******************************************************************************/
+\*****************************************************************************/
 
 jas_image_t *jpc_decode(jas_stream_t *in, char *optstr)
 {