Initial community commit
This commit is contained in:
31
Src/external_dependencies/openmpt-trunk/include/ancient/src/RLENDecompressor.hpp
vendored
Normal file
31
Src/external_dependencies/openmpt-trunk/include/ancient/src/RLENDecompressor.hpp
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
/* Copyright (C) Teemu Suutari */
|
||||
|
||||
#ifndef RLENDECOMPRESSOR_HPP
|
||||
#define RLENDECOMPRESSOR_HPP
|
||||
|
||||
#include "XPKDecompressor.hpp"
|
||||
|
||||
namespace ancient::internal
|
||||
{
|
||||
|
||||
class RLENDecompressor : public XPKDecompressor
|
||||
{
|
||||
public:
|
||||
RLENDecompressor(uint32_t hdr,uint32_t recursionLevel,const Buffer &packedData,std::shared_ptr<XPKDecompressor::State> &state,bool verify);
|
||||
|
||||
virtual ~RLENDecompressor();
|
||||
|
||||
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);
|
||||
|
||||
private:
|
||||
const Buffer &_packedData;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user