| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // Copyright (C) 2004-2021 Artifex Software, Inc.
- //
- // This file is part of MuPDF.
- //
- // MuPDF is free software: you can redistribute it and/or modify it under the
- // terms of the GNU Affero General Public License as published by the Free
- // Software Foundation, either version 3 of the License, or (at your option)
- // any later version.
- //
- // MuPDF is distributed in the hope that it will be useful, but WITHOUT ANY
- // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- // details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with MuPDF. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>
- //
- // Alternative licensing terms are available from the licensor.
- // For commercial licensing, see <https://www.artifex.com/> or contact
- // Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
- // CA 94129, USA, for further information.
- #include "mupdf/fitz.h"
- /* 4bit greyscale Thunderscan decoding */
- typedef struct
- {
- fz_stream *chain;
- int lastpixel;
- int run;
- int pixel;
- int len;
- unsigned char *buffer;
- } fz_thunder;
- static int
- next_thunder(fz_context *ctx, fz_stream *stm, size_t max)
- {
- fz_thunder *state = stm->state;
- unsigned char *p = state->buffer;
- unsigned char *ep;
- int c, v, i, pixels, index;
- if (max > (size_t)state->len)
- max = (size_t)state->len;
- ep = p + max;
- c = 0;
- while (p < ep && c >= 0)
- {
- pixels = 0;
- v = 0;
- while (pixels < 2)
- {
- if (state->run > 0)
- {
- v <<= 4;
- v |= state->pixel & 0xf;
- state->pixel >>= 4;
- state->run--;
- pixels++;
- if (state->run > 2)
- state->pixel |= ((state->pixel >> 4) & 0xf) << 8;
- }
- else
- {
- c = fz_read_byte(ctx, state->chain);
- if (c < 0)
- break;
- switch ((c >> 6) & 0x3)
- {
- case 0x0: /* run of pixels identical to last pixel */
- state->run = c;
- state->pixel = (state->lastpixel << 8) | (state->lastpixel << 4) | (state->lastpixel << 0);
- break;
- case 0x1: /* three pixels with 2bit deltas to last pixel */
- for (i = 0; i < 3; i++)
- {
- static const int deltas[] = { 0, 1, 0, -1 };
- index = (c >> (4 - i * 2)) & 0x3;
- if (index == 2)
- continue;
- state->lastpixel = (state->lastpixel + deltas[index]) & 0xf;
- state->pixel <<= 4;
- state->pixel |= state->lastpixel;
- state->run++;
- }
- break;
- case 0x2: /* two pixels with 3bit deltas to last pixel */
- for (i = 0; i < 2; i++)
- {
- static const int deltas[] = { 0, 1, 2, 3, 0, -3, -2, -1 };
- index = (c >> (3 - i * 3)) & 0x7;
- if (index == 4)
- continue;
- state->lastpixel = (state->lastpixel + deltas[index]) & 0xf;
- state->pixel <<= 4;
- state->pixel |= state->lastpixel;
- state->run++;
- }
- break;
- case 0x3: /* a single raw 4bit pixel */
- state->run = 1;
- state->pixel = c & 0xf;
- state->lastpixel = state->pixel & 0xf;
- break;
- }
- }
- }
- if (pixels)
- *p++ = v;
- }
- stm->rp = state->buffer;
- stm->wp = p;
- stm->pos += p - state->buffer;
- if (stm->rp != p)
- return *stm->rp++;
- return EOF;
- }
- static void
- close_thunder(fz_context *ctx, void *state_)
- {
- fz_thunder *state = (fz_thunder *)state_;
- fz_drop_stream(ctx, state->chain);
- fz_free(ctx, state->buffer);
- fz_free(ctx, state);
- }
- fz_stream *
- fz_open_thunder(fz_context *ctx, fz_stream *chain, int w)
- {
- fz_thunder *state = fz_malloc_struct(ctx, fz_thunder);
- fz_try(ctx)
- {
- state->run = 0;
- state->pixel = 0;
- state->lastpixel = 0;
- state->len = w / 2;
- state->buffer = Memento_label(fz_malloc(ctx, state->len), "thunder_buffer");
- state->chain = fz_keep_stream(ctx, chain);
- }
- fz_catch(ctx)
- {
- fz_free(ctx, state);
- fz_rethrow(ctx);
- }
- return fz_new_stream(ctx, state, next_thunder, close_thunder);
- }
|