mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
10 lines
No EOL
219 B
C++
10 lines
No EOL
219 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "common/image/image.h"
|
|
|
|
namespace image
|
|
{
|
|
// Decompress JPEG Data from memory
|
|
Image<uint16_t> decompress_jpeg12(uint8_t *data, int length, bool ignore_errors = false);
|
|
} |