aboutsummaryrefslogtreecommitdiff
path: root/Src/external_dependencies/openmpt-trunk/include/ancient/src/DLTADecode.hpp
blob: d6bf7076e920cd255d11807d9377bec319760427 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Copyright (C) Teemu Suutari */

#ifndef DLTADECODE_HPP
#define DLTADECODE_HPP

#include "XPKDecompressor.hpp"

namespace ancient::internal
{


class DLTADecode : public XPKDecompressor
{
public:
	DLTADecode(uint32_t hdr,uint32_t recursionLevel,const Buffer &packedData,std::shared_ptr<XPKDecompressor::State> &state,bool verify);

	virtual ~DLTADecode();

	virtual const std::string &getSubName() const noexcept override final;

	virtual void decompressImpl(Buffer &rawData,const Buffer &previousData,bool verify) override final;

	static bool detectHeaderXPK(uint32_t hdr) noexcept;
	static std::shared_ptr<XPKDecompressor> create(uint32_t hdr,uint32_t recursionLevel,const Buffer &packedData,std::shared_ptr<XPKDecompressor::State> &state,bool verify);

	// static method for easy external usage. Buffers can be the same for in-place replacement
	static void decode(Buffer &bufferDest,const Buffer &bufferSrc,size_t offset,size_t size);

private:
	const Buffer	&_packedData;
};

}

#endif