FFmpegfs Fuse Multi Media Filesystem 2.16
|
Image frame header. More...
#include <fileio.h>
Public Attributes | |
std::array< char, 8 > | m_tag |
Start tag, always ascii "IMGFRAME". More... | |
uint32_t | m_frame_no |
Number of the frame image. 0 if not yet decoded. More... | |
uint64_t | m_offset |
Offset in index file. More... | |
uint32_t | m_size |
Image size in bytes. More... | |
std::array< uint8_t, 8 > | m_reserved |
Reserved. Pad structure to 32 bytes. More... | |
Image frame header.
This image frame header will always start at an 8K boundary of the cache.
It can be used to find the next image by seeking an 8K block starting with the tag.
uint32_t IMAGE_FRAME::m_frame_no |
Number of the frame image. 0 if not yet decoded.
Definition at line 79 of file fileio.h.
Referenced by Buffer::write_frame().
uint64_t IMAGE_FRAME::m_offset |
std::array<uint8_t, 8> IMAGE_FRAME::m_reserved |
uint32_t IMAGE_FRAME::m_size |
std::array<char, 8> IMAGE_FRAME::m_tag |
Start tag, always ascii "IMGFRAME".
Definition at line 78 of file fileio.h.
Referenced by Buffer::write_frame().