mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
26 lines
No EOL
631 B
C++
26 lines
No EOL
631 B
C++
#pragma once
|
|
|
|
/**
|
|
* @file decomp.h
|
|
* @brief MSG/ELEKTRO Decompression functions
|
|
*/
|
|
|
|
#include "msg_headers.h"
|
|
#include "xrit/xrit_file.h"
|
|
|
|
namespace satdump
|
|
{
|
|
namespace xrit
|
|
{
|
|
namespace msg
|
|
{
|
|
/**
|
|
* @brief Parses headers to figure out the compression utilized
|
|
* (usually Wavelet on HRIT and JPEG on LRIT), and decompressed the file
|
|
* back into raw data.
|
|
* @param file file to decompress
|
|
*/
|
|
void decompressMsgHritFileIfRequired(XRITFile &file);
|
|
} // namespace msg
|
|
} // namespace xrit
|
|
} // namespace satdump
|