LibreOffice Module vcl (master) 1
decode.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <tools/solar.h>
23#include <vcl/Scanline.hxx>
24#include <array>
25#include <memory>
26
27struct GIFLZWTableEntry;
28
30{
31 std::unique_ptr<GIFLZWTableEntry[]>
33 std::array<sal_uInt8, 4096>
42 sal_uInt16 nClearCode;
43 sal_uInt16 nEOICode;
44 sal_uInt16 nTableSize;
45 sal_uInt16 nCodeSize;
46 sal_uInt16 nOldCode;
47 sal_uInt16 nOutBufDataLen;
49
50 bool AddToTable(sal_uInt16 nPrevCode, sal_uInt16 nCodeFirstData);
51 bool ProcessOneCode();
52
55public:
56
57 explicit GIFLZWDecompressor( sal_uInt8 cDataSize );
59
60 Scanline DecompressBlock( sal_uInt8* pSrc, sal_uInt8 cBufSize, sal_uLong& rCount, bool& rEOI );
61};
62
63/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sal_uInt8 * Scanline
Definition: Scanline.hxx:26
sal_uLong nInputBitsBuf
Definition: decode.hxx:37
sal_uInt16 nOutBufDataLen
Definition: decode.hxx:47
bool ProcessOneCode()
Definition: decode.cxx:130
sal_uInt16 nInputBitsBufSize
Definition: decode.hxx:48
std::unique_ptr< GIFLZWTableEntry[]> pTable
Definition: decode.hxx:32
sal_uInt8 * pOutBufData
Definition: decode.hxx:35
sal_uInt8 nBlockBufSize
Definition: decode.hxx:40
sal_uInt16 nOldCode
Definition: decode.hxx:46
sal_uInt16 nCodeSize
Definition: decode.hxx:45
GIFLZWDecompressor(const GIFLZWDecompressor &)=delete
sal_uInt8 nDataSize
Definition: decode.hxx:39
sal_uInt8 * pBlockBuf
Definition: decode.hxx:36
sal_uInt16 nEOICode
Definition: decode.hxx:43
sal_uInt8 nBlockBufPos
Definition: decode.hxx:41
sal_uInt16 nClearCode
Definition: decode.hxx:42
Scanline DecompressBlock(sal_uInt8 *pSrc, sal_uInt8 cBufSize, sal_uLong &rCount, bool &rEOI)
Definition: decode.cxx:63
GIFLZWDecompressor & operator=(const GIFLZWDecompressor &)=delete
std::array< sal_uInt8, 4096 > pOutBuf
Definition: decode.hxx:34
sal_uInt16 nTableSize
Definition: decode.hxx:44
bool AddToTable(sal_uInt16 nPrevCode, sal_uInt16 nCodeFirstData)
Definition: decode.cxx:111
sal_uIntPtr sal_uLong
unsigned char sal_uInt8