Coverage Report

Created: 2026-04-29 07:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openexr/src/lib/OpenEXR/ImfRleCompressor.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 RleCompressor
9
//
10
//-----------------------------------------------------------------------------
11
12
#include "ImfRleCompressor.h"
13
14
OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_ENTER
15
16
RleCompressor::RleCompressor (const Header& hdr, size_t maxScanLineSize)
17
0
    : Compressor (hdr, EXR_COMPRESSION_RLE, maxScanLineSize, 1)
18
0
{
19
0
}
20
21
RleCompressor::~RleCompressor ()
22
0
{
23
0
}
24
25
OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_EXIT