X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=otherlibs%2F_graphics%2Fsrc%2Flibjasper%2Fjpc_t2dec.c;h=48235c0b51bee631fcaefb1e2ab9ba230270a6bc;hb=80cd7b93506cc1926882d5fd08a2c74ee9359e29;hp=06f433c3170263190b54c73665c07df664cf3d17;hpb=467a270adf12425827305759c0c4ea8f5b2b3854;p=opencv diff --git a/otherlibs/_graphics/src/libjasper/jpc_t2dec.c b/otherlibs/_graphics/src/libjasper/jpc_t2dec.c index 06f433c..48235c0 100644 --- a/otherlibs/_graphics/src/libjasper/jpc_t2dec.c +++ b/otherlibs/_graphics/src/libjasper/jpc_t2dec.c @@ -9,9 +9,9 @@ * * JasPer License Version 2.0 * + * Copyright (c) 2001-2006 Michael David Adams * Copyright (c) 1999-2000 Image Power, Inc. * Copyright (c) 1999-2000 The University of British Columbia - * Copyright (c) 2001-2003 Michael David Adams * * All rights reserved. * @@ -64,7 +64,7 @@ /* * Tier 2 Decoder * - * $Id: jpc_t2dec.c,v 1.1 2007/01/15 16:09:29 vp153 Exp $ + * $Id: jpc_t2dec.c,v 1.2 2008/05/26 09:40:52 vp153 Exp $ */ /******************************************************************************\ @@ -211,7 +211,7 @@ static int jpc_dec_decodepkt(jpc_dec_t *dec, jas_stream_t *pkthdrstream, jas_str } if (jpc_ms_gettype(ms) != JPC_MS_SOP) { jpc_ms_destroy(ms); - fprintf(stderr, "missing SOP marker segment\n"); + jas_eprintf("missing SOP marker segment\n"); return -1; } jpc_ms_destroy(ms); @@ -332,7 +332,7 @@ hdroffstart = jas_stream_getrwcount(pkthdrstream); } else { if (jpc_bitstream_inalign(inb, 0x7f, 0)) { - fprintf(stderr, "alignment failed\n"); + jas_eprintf("alignment failed\n"); return -1; } } @@ -341,19 +341,19 @@ hdroffstart = jas_stream_getrwcount(pkthdrstream); hdroffend = jas_stream_getrwcount(pkthdrstream); hdrlen = hdroffend - hdroffstart; if (jas_getdbglevel() >= 5) { - fprintf(stderr, "hdrlen=%lu bodylen=%lu \n", (unsigned long) hdrlen, + jas_eprintf("hdrlen=%lu bodylen=%lu \n", (unsigned long) hdrlen, (unsigned long) bodylen); } if (cp->csty & JPC_COD_EPH) { if (jpc_dec_lookahead(pkthdrstream) == JPC_MS_EPH) { if (!(ms = jpc_getms(pkthdrstream, dec->cstate))) { - fprintf(stderr, "cannot get (EPH) marker segment\n"); + jas_eprintf("cannot get (EPH) marker segment\n"); return -1; } if (jpc_ms_gettype(ms) != JPC_MS_EPH) { jpc_ms_destroy(ms); - fprintf(stderr, "missing EPH marker segment\n"); + jas_eprintf("missing EPH marker segment\n"); return -1; } jpc_ms_destroy(ms); @@ -363,7 +363,7 @@ hdroffstart = jas_stream_getrwcount(pkthdrstream); /* decode the packet body. */ if (jas_getdbglevel() >= 1) { - fprintf(stderr, "packet body offset=%06ld\n", (long) jas_stream_getrwcount(in)); + jas_eprintf("packet body offset=%06ld\n", (long) jas_stream_getrwcount(in)); } if (!discard) { @@ -388,7 +388,7 @@ hdroffstart = jas_stream_getrwcount(pkthdrstream); } } #if 0 -fprintf(stderr, "lyrno=%02d, compno=%02d, lvlno=%02d, prcno=%02d, bandno=%02d, cblkno=%02d, passno=%02d numpasses=%02d cnt=%d numbps=%d, numimsbs=%d\n", lyrno, compno, rlvlno, prcno, band - rlvl->bands, cblk - prc->cblks, seg->passno, seg->numpasses, seg->cnt, band->numbps, cblk->numimsbs); +jas_eprintf("lyrno=%02d, compno=%02d, lvlno=%02d, prcno=%02d, bandno=%02d, cblkno=%02d, passno=%02d numpasses=%02d cnt=%d numbps=%d, numimsbs=%d\n", lyrno, compno, rlvlno, prcno, band - rlvl->bands, cblk - prc->cblks, seg->passno, seg->numpasses, seg->cnt, band->numbps, cblk->numimsbs); #endif if (seg->cnt > 0) { if (jpc_getdata(in, seg->stream, seg->cnt) < 0) { @@ -442,11 +442,11 @@ if (!tile->pkthdrstream || jas_stream_peekc(tile->pkthdrstream) == EOF) { return ret; } if (dec->maxpkts >= 0 && dec->numpkts >= dec->maxpkts) { - fprintf(stderr, "warning: stopping decode prematurely as requested\n"); + jas_eprintf("warning: stopping decode prematurely as requested\n"); return 0; } if (jas_getdbglevel() >= 1) { - fprintf(stderr, "packet offset=%08ld prg=%d cmptno=%02d " + jas_eprintf("packet offset=%08ld prg=%d cmptno=%02d " "rlvlno=%02d prcno=%03d lyrno=%02d\n", (long) jas_stream_getrwcount(in), jpc_pi_prg(pi), jpc_pi_cmptno(pi), jpc_pi_rlvlno(pi), jpc_pi_prcno(pi), jpc_pi_lyrno(pi));