reactos/rosapps/smartpdf/fitz/stream/stm_filter.c

53 lines
916 B
C
Raw Normal View History

#include "fitz-base.h"
#include "fitz-stream.h"
fz_error fz_kioneedin = { -1, "<ioneedin>", "<process>", "filter.c", 0 };
fz_error fz_kioneedout = { -1, "<ioneedout>", "<process>", "filter.c", 0 };
fz_error fz_kiodone = { -1, "<iodone>", "<process>", "filter.c", 0 };
fz_error *
fz_process(fz_filter *f, fz_buffer *in, fz_buffer *out)
{
fz_error *reason;
unsigned char *oldrp;
unsigned char *oldwp;
assert(!out->eof);
oldrp = in->rp;
oldwp = out->wp;
reason = f->process(f, in, out);
assert(in->rp <= in->wp);
assert(out->wp <= out->ep);
f->consumed = in->rp > oldrp;
f->produced = out->wp > oldwp;
f->count += out->wp - oldwp;
if (reason != fz_ioneedin && reason != fz_ioneedout)
out->eof = 1;
return reason;
}
fz_filter *
fz_keepfilter(fz_filter *f)
{
f->refs ++;
return f;
}
void
fz_dropfilter(fz_filter *f)
{
if (--f->refs == 0)
{
if (f->drop)
f->drop(f);
fz_free(f);
}
}