/src/openexr/src/lib/OpenEXR/ImfZipCompressor.cpp
Line | Count | Source |
1 | | // |
2 | | // SPDX-License-Identifier: BSD-3-Clause |
3 | | // Copyright (c) Contributors to the OpenEXR Project. |
4 | | // |
5 | | |
6 | | //----------------------------------------------------------------------------- |
7 | | // |
8 | | // class ZipCompressor |
9 | | // |
10 | | //----------------------------------------------------------------------------- |
11 | | |
12 | | #include "ImfZipCompressor.h" |
13 | | |
14 | | OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_ENTER |
15 | | |
16 | | ZipCompressor::ZipCompressor ( |
17 | | const Header& hdr, size_t maxScanLineSize, int numScanLines) |
18 | 0 | : Compressor (hdr, |
19 | 0 | (numScanLines == 16) ? EXR_COMPRESSION_ZIPS : EXR_COMPRESSION_ZIP, |
20 | 0 | maxScanLineSize, |
21 | 0 | numScanLines) |
22 | 0 | { |
23 | 0 | } |
24 | | |
25 | | ZipCompressor::~ZipCompressor () |
26 | 0 | { |
27 | 0 | } |
28 | | |
29 | | OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_EXIT |