Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • qpdf
  • libqpdf
  • QPDFStreamFilter.cc
  • Implement user-provided stream filters ...
    39bfa013
    Refactor QPDF_Stream to use stream filter classes to handle supported
    stream filters as well.
    Jay Berkenbilt authored
    2020-12-28 12:58:19 -0500  
    Browse Code ยป
QPDFStreamFilter.cc 284 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include <qpdf/QPDFStreamFilter.hh>

bool
QPDFStreamFilter::setDecodeParms(QPDFObjectHandle decode_parms)
{
    return decode_parms.isNull();
}

bool
QPDFStreamFilter::isSpecializedCompression()
{
    return false;
}

bool
QPDFStreamFilter::isLossyCompression()
{
    return false;
}