pub type opj_codestream_index_t = opj_codestream_index;
Expand description

Index structure of the codestream (FIXME should be expand and enhance)

Aliased Type§

struct opj_codestream_index_t {
    pub main_head_start: i64,
    pub main_head_end: i64,
    pub codestream_size: u64,
    pub marknum: u32,
    pub marker: *mut opj_marker_info,
    pub maxmarknum: u32,
    pub nb_of_tiles: u32,
    pub tile_index: *mut opj_tile_index,
}

Fields§

§main_head_start: i64

main header start position (SOC position)

§main_head_end: i64

main header end position (first SOT position)

§codestream_size: u64

codestream’s size

§marknum: u32

number of markers

§marker: *mut opj_marker_info

list of markers

§maxmarknum: u32

actual size of markers array

§nb_of_tiles: u32§tile_index: *mut opj_tile_index