#include "compression.h"
#include <QBuffer>
#include <QtEndian>
#include <algorithm>
#include <zlib.h>
#include <kis_debug.h>
#include <psd_utils.h>
Go to the source code of this file.
|
| int | KisZip::compress (const char *input, int unpacked_len, char *dst, int maxout) |
| |
| QByteArray | KisRLE::compress (const QByteArray &data) |
| |
| QByteArray | KisZip::compress (const QByteArray &data) |
| |
| int | KisRLE::compress (const QByteArray &src, QByteArray &dst) |
| |
| QByteArray | KisZip::decompress (const QByteArray &data, int expected_length) |
| |
| QByteArray | KisRLE::decompress (const QByteArray &input, int unpacked_len) |
| |
| QByteArray | KisZip::psd_unzip_with_prediction (const QByteArray &src, int dst_len, int row_size, int color_depth) |
| |
| template<typename T > |
| void | KisZip::psd_unzip_with_prediction (QByteArray &dst_buf, int row_size) |
| |
| template<> |
| void | KisZip::psd_unzip_with_prediction< uint16_t > (QByteArray &dst_buf, const int row_size) |
| |
| template<> |
| void | KisZip::psd_unzip_with_prediction< uint8_t > (QByteArray &dst_buf, const int row_size) |
| |
| int | KisZip::psd_unzip_without_prediction (const char *src, int packed_len, char *dst, int unpacked_len) |
| |
| QByteArray | KisZip::psd_zip_with_prediction (const QByteArray &src, int row_size, int color_depth) |
| |
| template<typename T > |
| void | KisZip::psd_zip_with_prediction (QByteArray &dst_buf, int row_size) |
| |
| template<> |
| void | KisZip::psd_zip_with_prediction< uint16_t > (QByteArray &dst_buf, const int row_size) |
| |
| template<> |
| void | KisZip::psd_zip_with_prediction< uint8_t > (QByteArray &dst_buf, const int row_size) |
| |