openMSX
|
#include "ZMBVEncoder.hh"
#include "FrameSource.hh"
#include "PixelOperations.hh"
#include "cstd.hh"
#include "endian.hh"
#include "ranges.hh"
#include "unreachable.hh"
#include <array>
#include <cassert>
#include <cstdint>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <tuple>
Go to the source code of this file.
Classes | |
struct | openmsx::CodecVector |
struct | openmsx::KeyframeHeader |
Namespaces | |
openmsx | |
This file implemented 3 utility functions: | |
Variables | |
constexpr uint8_t | openmsx::DBZV_VERSION_HIGH = 0 |
constexpr uint8_t | openmsx::DBZV_VERSION_LOW = 1 |
constexpr uint8_t | openmsx::COMPRESSION_ZLIB = 1 |
constexpr unsigned | openmsx::MAX_VECTOR = 16 |
constexpr unsigned | openmsx::BLOCK_WIDTH = MAX_VECTOR |
constexpr unsigned | openmsx::BLOCK_HEIGHT = MAX_VECTOR |
constexpr unsigned | openmsx::FLAG_KEYFRAME = 0x01 |
constexpr unsigned | openmsx::VECTOR_TAB_SIZE |
constexpr auto | openmsx::vectorTable |