mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 03:48:17 +00:00
435a566751
* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
75 lines
1.1 KiB
C
75 lines
1.1 KiB
C
#include "fitz-base.h"
|
|
#include "fitz-stream.h"
|
|
|
|
fz_error *
|
|
fz_newrld(fz_filter **fp, fz_obj *params)
|
|
{
|
|
FZ_NEWFILTER(fz_filter, f, rld);
|
|
return nil;
|
|
}
|
|
|
|
void
|
|
fz_droprld(fz_filter *rld)
|
|
{
|
|
}
|
|
|
|
fz_error *
|
|
fz_processrld(fz_filter *filter, fz_buffer *in, fz_buffer *out)
|
|
{
|
|
int run, i;
|
|
unsigned char c;
|
|
|
|
while (1)
|
|
{
|
|
if (in->rp == in->wp)
|
|
{
|
|
if (in->eof)
|
|
{
|
|
out->eof = 1;
|
|
return fz_iodone;
|
|
}
|
|
return fz_ioneedin;
|
|
}
|
|
|
|
if (out->wp == out->ep)
|
|
return fz_ioneedout;
|
|
|
|
run = *in->rp++;
|
|
|
|
if (run == 128) {
|
|
out->eof = 1;
|
|
return fz_iodone;
|
|
}
|
|
|
|
else if (run < 128) {
|
|
run = run + 1;
|
|
if (in->rp + run > in->wp) {
|
|
in->rp --;
|
|
return fz_ioneedin;
|
|
}
|
|
if (out->wp + run > out->ep) {
|
|
in->rp --;
|
|
return fz_ioneedout;
|
|
}
|
|
for (i = 0; i < run; i++)
|
|
*out->wp++ = *in->rp++;
|
|
}
|
|
|
|
else if (run > 128) {
|
|
run = 257 - run;
|
|
if (in->rp + 1 > in->wp) {
|
|
in->rp --;
|
|
return fz_ioneedin;
|
|
}
|
|
if (out->wp + run > out->ep) {
|
|
in->rp --;
|
|
return fz_ioneedout;
|
|
}
|
|
c = *in->rp++;
|
|
for (i = 0; i < run; i++)
|
|
*out->wp++ = c;
|
|
}
|
|
}
|
|
}
|
|
|